Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
ochinpo
/
up
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
up
/
Dockerfile
cruxx4
Create Dockerfile
77bd311
verified
4 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
143 Bytes
FROM
node:latest
RUN
apt-get update
WORKDIR
/app
COPY
package.json .
RUN
npm i && npm i -g coffeescript
COPY
. .
CMD
[
"coffee"
,
"main.coffee"
]