mknolan commited on
Commit
a471edb
·
verified ·
1 Parent(s): 0dd9229

Upload Dockerfile with huggingface_hub

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -3
Dockerfile CHANGED
@@ -37,8 +37,8 @@ RUN pip3 install --no-cache-dir \
37
  safetensors==0.4.1 \
38
  einops
39
 
40
- # Copy the application file
41
- COPY no_flash_attn_test.py /app/app.py
42
 
43
  # Add a simple script to check GPU status
44
  RUN echo '#!/bin/bash \n\
@@ -73,4 +73,4 @@ EXPOSE 7860
73
  ENTRYPOINT ["/entrypoint.sh"]
74
 
75
  # Start the application
76
- CMD ["python3", "app.py"]
 
37
  safetensors==0.4.1 \
38
  einops
39
 
40
+ # Copy the application file (we have both names in repo for redundancy)
41
+ COPY app.py /app/app.py
42
 
43
  # Add a simple script to check GPU status
44
  RUN echo '#!/bin/bash \n\
 
73
  ENTRYPOINT ["/entrypoint.sh"]
74
 
75
  # Start the application
76
+ CMD ["python3", "app.py"]