BUGFIX: no config file in WORKDIR

This commit is contained in:
Simon Martens
2025-09-30 12:56:52 +02:00
parent 907f3d0071
commit f61e1fdc01

View File

@@ -2,6 +2,7 @@ FROM golang:1.25
WORKDIR /app
COPY . .
COPY config.staging.json config.json
RUN go build
EXPOSE 8095