pastebin/Dockerfile

18 lines
338 B
Docker
Raw Normal View History

2024-03-18 18:32:13 +00:00
FROM images.internal/devel:latest AS builder
2023-09-30 13:47:59 +00:00
2023-10-21 17:39:43 +00:00
WORKDIR /app
2024-03-18 17:03:14 +00:00
2023-10-21 17:39:43 +00:00
COPY . /app
2024-03-18 17:03:14 +00:00
RUN make build
2024-03-18 18:32:13 +00:00
FROM images.internal/golang:latest
COPY --from=builder /app/config_dev.yaml /app/config_dev.yaml
COPY --from=builder /app/pastebin /app/pastebin
COPY --from=builder /app/webui/dist /app/webui/dist/
EXPOSE 38001
2023-09-30 13:47:59 +00:00
ENTRYPOINT [ "./pastebin", "api" ]