mirror of
https://github.com/aljazceru/addons.git
synced 2025-12-17 13:14:21 +01:00
16 lines
201 B
Docker
16 lines
201 B
Docker
FROM %%BASE_IMAGE%%
|
|
|
|
# Add env
|
|
ENV LANG C.UTF-8
|
|
|
|
# Setup base
|
|
RUN apk add --no-cache tzdata jq nginx libressl
|
|
|
|
# Copy data
|
|
COPY run.sh /
|
|
COPY nginx.conf /etc/
|
|
|
|
RUN chmod a+x /run.sh
|
|
|
|
CMD [ "/run.sh" ]
|