11 lines
248 B
Docker
11 lines
248 B
Docker
|
FROM alpine:3.12 as certs
|
||
|
RUN set -ex \
|
||
|
&& apk add --no-cache \
|
||
|
ca-certificates
|
||
|
|
||
|
FROM scratch
|
||
|
COPY --from=certs /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
|
||
|
COPY jellyfixer /
|
||
|
EXPOSE 8088
|
||
|
ENTRYPOINT ["/jellyfixer"]
|