Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
MillMin
/
FSA-PROJECT-CV
like
0
Build error
App
Files
Files
Community
2e20f5f
FSA-PROJECT-CV
/
dockerfile
MillMin
Phase2/NhanHT: Add docker compose
c24ff2d
8 months ago
raw
Copy download link
history
blame
186 Bytes
FROM
python:
3.10
.
9
WORKDIR
/code
COPY
./requirements.txt /code/requirements.txt
RUN
pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY
. .
CMD
[
"python"
,
"main.py"
]