1
0
Fork 0
mirror of https://github.com/postmannen/ctrl.git synced 2024-12-14 12:37:31 +00:00

Updated Dockerfile

This commit is contained in:
postmannen 2022-02-18 11:55:15 +01:00
parent f2f7be5c11
commit 38462d7310

View file

@ -1,9 +1,9 @@
# build stage
FROM golang:1.17.0-alpine AS build-env
FROM golang:1.17.7-alpine AS build-env
RUN apk --no-cache add build-base git gcc
RUN mkdir -p /build
COPY ./steward /build/
COPY ./ /build/
WORKDIR /build/cmd/steward/
RUN go version