thewellermangroup commited on
Commit
3f68551
·
1 Parent(s): 116f938

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -4
Dockerfile CHANGED
@@ -20,11 +20,9 @@ RUN pip install flask-cors
20
 
21
  # Copy the file creation and application startup scripts
22
  COPY --chown=user start.sh start.sh
23
- COPY --chown=user functions.py functions.py
24
  COPY --chown=user app.py app.py
25
- COPY --chown=user FUNCTIONS.txt FUNCTIONS.txt
26
- #COPY --chown=user FUNCTIONS_BACKEND.txt FUNCTIONS_BACKEND.txt
27
- #COPY --chown=user FUNCTIONS_FRONTEND.txt FUNCTIONS_FRONTEND.txt
28
 
29
  # Grant execute permission to the start script
30
  RUN chmod +x start.sh
 
20
 
21
  # Copy the file creation and application startup scripts
22
  COPY --chown=user start.sh start.sh
23
+ COPY --chown=user /FUNCTIONS/functions.py FUNCTIONS/functions.py
24
  COPY --chown=user app.py app.py
25
+ COPY --chown=user /FUNCTIONS/FUNCTIONS.txt /FUNCTIONS/FUNCTIONS.txt
 
 
26
 
27
  # Grant execute permission to the start script
28
  RUN chmod +x start.sh