You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
bit4sat/docker/Dockerfile

16 lines
217 B
Docker

FROM golang:alpine
RUN apk update && apk add --no-cache \
git \
bash \
gcc build-base make
RUN mkdir -p /src
WORKDIR /src
ENV GO111MODULE=on
ADD entrypoint.sh /entry
RUN chmod +x /entry
CMD ["/entry"]