adds certificate file

This commit is contained in:
franz.germann1 2024-10-23 15:14:37 +02:00
parent da78de47af
commit c4bebe6d3c
3 changed files with 57 additions and 19 deletions

View file

@ -1,14 +1,14 @@
FROM golang:latest AS builder
WORKDIR shared-data/app
WORKDIR /shared-data/app
COPY shared-data/repo/ ./
COPY /shared-data/repo/ ./
# RUN go mod download
RUN CGO_ENABLED=0 GOOS=linux go build -o fibonacci_go .
FROM alpine:latest
WORKDIR shared-data/app
WORKDIR /shared-data/app
COPY --from=builder /shared-data/app/fibonacci_go .