Add Download to Dockerfile for more transparency

Tá an tiomantas seo le fáil i:
Florian Brinker
2021-04-22 22:27:46 +02:00
tuismitheoir 2c4c532dff
tiomantas 1b88465f3f
D'athraigh 3 comhad le 18 breiseanna agus 27 scriosta

Féach ar an gComhad

@@ -1,8 +1,15 @@
FROM python:alpine
LABEL maintainer="mail+docker@f-brinker.de"
# Insert Tileboard
COPY ./files/ /tileboard/
# Install wget
RUN apk update \
&& apk add ca-certificates wget unzip \
&& update-ca-certificates
# Download TileBoard
RUN wget -q -O release.zip "%RELEASE_URL%" \
&& unzip release.zip -d /tileboard/ \
&& rm release.zip
# Start Server
WORKDIR /tileboard