mirror of
https://github.com/Xevion/glance.git
synced 2025-12-07 09:15:14 -06:00
Build app in Dockerfile
This change makes it simpler and more convenient to build the app.
This commit is contained in:
@@ -1,7 +1,14 @@
|
||||
FROM golang:1.22.3-alpine3.19 AS builder
|
||||
|
||||
WORKDIR /app
|
||||
COPY . /app
|
||||
RUN CGO_ENABLED=0 go build .
|
||||
|
||||
|
||||
FROM alpine:3.19
|
||||
|
||||
WORKDIR /app
|
||||
COPY build/glance /app/glance
|
||||
COPY --from=builder /app/glance .
|
||||
|
||||
EXPOSE 8080/tcp
|
||||
ENTRYPOINT ["/app/glance"]
|
||||
|
||||
Reference in New Issue
Block a user