Spaces:
Sleeping
Sleeping
File size: 637 Bytes
a7eb09d c829459 2aba52a a7eb09d 2aba52a a7eb09d 067a5f1 17361e8 067a5f1 30bdc01 17361e8 067a5f1 a3550d6 17361e8 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
FROM python:3.10
RUN apt-get update -y && apt-get install -y build-essential
WORKDIR /app
RUN useradd -m -u 1000 user
USER user
ENV HOME=/home/user \
PATH=/home/user/.local/bin:$PATH
WORKDIR $HOME/app
COPY --chown=user . $HOME/app
RUN pip install flask
RUN pip install gunicorn
RUN pip install flask-cors
# Copy the file creation and application startup scripts
COPY --chown=user start.sh start.sh
COPY --chown=user create_large_file.py create_large_file.py
COPY --chown=user app.py app.py
# Grant execute permission to the start script
RUN chmod +x start.sh
# Command to start the Flask app with Gunicorn
CMD ["./start.sh"]
|