galerie-site/Dockerfile

21 lines
361 B
Docker

FROM python:3.8-alpine as build
WORKDIR /app
COPY Pipfile* /app/
RUN pip install pipenv && pipenv install --system
COPY app.py /app/app.py
COPY templates/ /app/templates
COPY data/ /app/data
COPY hash /app/hash
RUN python ./app.py
FROM nginx:1.19-alpine
COPY nginx.conf /etc/nginx/conf.d/default.conf
COPY --from=build /app/dist/ /usr/share/nginx/html/