mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-29 21:50:26 +00:00
12 lines
149 B
Text
12 lines
149 B
Text
|
FROM alpine:latest
|
||
|
|
||
|
RUN apk add --no-cache \
|
||
|
bash \
|
||
|
ca-certificates \
|
||
|
curl \
|
||
|
jq
|
||
|
|
||
|
COPY upload /usr/bin/upload
|
||
|
|
||
|
ENTRYPOINT ["/usr/bin/upload"]
|