mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2025-02-01 18:02:42 +01:00
11 lines
172 B
Docker
11 lines
172 B
Docker
|
FROM golang:alpine
|
||
|
MAINTAINER Jessica Frazelle <jess@linux.com>
|
||
|
|
||
|
RUN apk add --no-cache \
|
||
|
bash \
|
||
|
ca-certificates \
|
||
|
curl \
|
||
|
jq
|
||
|
|
||
|
COPY upload-assets /usr/bin/upload-assets
|