13 lines
287 B
Docker
13 lines
287 B
Docker
|
FROM golang:latest as build
|
||
|
WORKDIR /build
|
||
|
COPY . .
|
||
|
RUN go test ./...
|
||
|
RUN go build
|
||
|
|
||
|
FROM scratch
|
||
|
EXPOSE 8500
|
||
|
WORKDIR /app
|
||
|
COPY --from=build /build/templates /app/templates
|
||
|
COPY --from=build /build/static /app/static
|
||
|
COPY --from=build /build/barcodes /app/barcodes
|
||
|
CMD [ "/app/barcodes" ]
|