2024-09-28 16:15:27 +00:00
|
|
|
FROM docker.io/golang:1.23 as build
|
2024-09-28 16:00:18 +00:00
|
|
|
COPY src/ .
|
|
|
|
RUN printf 'module yw5n\ngo 1.23' > go.mod && CGO_ENABLED=0 go build -o /app
|
|
|
|
|
|
|
|
FROM scratch
|
2024-09-28 16:15:27 +00:00
|
|
|
COPY --from=build /app /app
|
2024-09-28 16:00:18 +00:00
|
|
|
COPY static/ /static/
|
|
|
|
COPY html/ /html/
|
|
|
|
EXPOSE 3000
|
|
|
|
CMD ["/app"]
|