adds certificate file
This commit is contained in:
parent
da78de47af
commit
c4bebe6d3c
3 changed files with 57 additions and 19 deletions
|
|
@ -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 .
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue