AuthSystem / Dockerfile
dushj98's picture
Update Dockerfile
e19d9f5 verified
raw
history blame contribute delete
278 Bytes
FROM python:3.10-slim
USER root
WORKDIR /app
COPY requirements.txt /app/
RUN pip install -r requirements.txt
COPY app.py /app/
COPY assets /app/assets
COPY instance /app/instance
RUN chmod -R 777 /app/instance
RUN pip install Flask
EXPOSE 5000
CMD ["python", "app.py"]