mirror of
https://github.com/gilbN/theme.park.git
synced 2024-11-04 10:12:31 +01:00
18 lines
479 B
Docker
18 lines
479 B
Docker
FROM ghcr.io/linuxserver/baseimage-alpine-nginx:3.14
|
|
|
|
LABEL maintainer="Roxedus"
|
|
|
|
COPY / /themepark
|
|
|
|
RUN \
|
|
echo " ## Installing packages ## " && \
|
|
apk add --no-cache --virtual=build-dependencies \
|
|
python3
|
|
|
|
|
|
# RUN mkdir -p /usr/share/nginx/html/css/
|
|
# RUN mkdir -p /usr/share/nginx/html/resources/
|
|
# RUN cp -R css/ /usr/share/nginx/html/css/
|
|
# RUN cp -R resources/ /usr/share/nginx/html/resources/
|
|
# RUN cp index.html /usr/share/nginx/html/index.html
|
|
#rm -rf /themepark |