mirror of
https://github.com/twofas/2fas-server.git
synced 2024-11-21 17:59:55 +01:00
6089495167
* Update go to 1.21 * update all dependencies
34 lines
573 B
Docker
34 lines
573 B
Docker
FROM golang:1.21-alpine as build
|
|
|
|
ENV GO111MODULE=on \
|
|
CGO_ENABLED=0 \
|
|
GOOS=linux \
|
|
GOARCH=amd64
|
|
|
|
WORKDIR /go/src/2fas
|
|
|
|
COPY go.mod go.sum ./
|
|
|
|
RUN go mod download -x
|
|
|
|
COPY . .
|
|
|
|
RUN mkdir -p bin
|
|
|
|
RUN go build -trimpath -o bin/api ./cmd/api
|
|
RUN go build -trimpath -o bin/migrate ./cmd/migrate/
|
|
|
|
FROM alpine:latest
|
|
|
|
RUN adduser 2fas -D
|
|
|
|
USER 2fas
|
|
|
|
WORKDIR /home/2fas/
|
|
|
|
COPY --from=build /go/src/2fas/bin/* /usr/local/bin/
|
|
COPY ./migrations /migrations
|
|
COPY ./config/config.yml ./config.yml
|
|
COPY ./docker/api/run_api.sh /usr/local/bin/run_api.sh
|
|
|
|
CMD ["run_api.sh"] |