Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Duplicated from
sepioo/facebook-translation
Genzo1010
/
language_translator
like
0
Sleeping
App
Files
Files
Community
b96cef7
language_translator
/
Dockerfile
Hansimov
:boom: [Fix] Module apis not found
937bc45
11 months ago
raw
Copy download link
history
blame
Safe
148 Bytes
FROM
python:
3.11
-slim
WORKDIR
$HOME
/app
COPY
. .
RUN
pip install -r requirements.txt
VOLUME
/data
EXPOSE
23333
CMD
[
"python"
,
"-m"
,
"apis.chat_api"
]