File size: 794 Bytes
a7eb09d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
c829459
2aba52a
a7eb09d
2aba52a
a7eb09d
067a5f1
 
02a0617
067a5f1
559c51d
f28fc56
 
17361e8
067a5f1
30bdc01
a3550d6
3f54794
1343b71
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
33
34
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 functions.py functions.py
COPY --chown=user app.py app.py
COPY --chown=user FUNCTIONS.txt FUNCTIONS.txt
#COPY --chown=user FUNCTIONS_BACKEND.txt FUNCTIONS_BACKEND.txt
#COPY --chown=user FUNCTIONS_FRONTEND.txt FUNCTIONS_FRONTEND.txt

# Grant execute permission to the start script
RUN chmod +x start.sh
# Command to start the Flask app with Gunicorn
CMD ["./start.sh"]