mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2025-05-03 17:15:54 +02:00
15 lines
207 B
Docker
15 lines
207 B
Docker
FROM golang:alpine
|
|
MAINTAINER Jessica Frazelle <jess@linux.com>
|
|
|
|
RUN apk add --no-cache \
|
|
bash \
|
|
ca-certificates \
|
|
curl \
|
|
git \
|
|
jq \
|
|
make
|
|
|
|
ENV GO111MODULE on
|
|
|
|
COPY upload-assets /usr/bin/upload-assets
|