Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
TheFirstOython/python
TheFirstOython
/
pythonj
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
6245448
pythonj
/
Dockerfile
ayoub ayoub
Update Dockerfile
9f93ed9
verified
about 2 months ago
raw
Copy download link
history
blame
Safe
184 Bytes
FROM
node:
18
-slim
WORKDIR
/app
COPY
package*.json ./
RUN
npm install
COPY
. .
EXPOSE
7860
ENV
PORT=
7860
CMD
[
"./node_modules/.bin/concurrently"
,
"node bot.js"
,
"node server.js"
]