Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
ronvolutional
/
sk-docker
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
8375b0d
sk-docker
/
Dockerfile
ronvolutional
chore: Remove redundant
8375b0d
about 2 years ago
raw
Copy download link
history
blame
Safe
121 Bytes
from
node:
18
-alpine
WORKDIR
/app
COPY
. .
RUN
npm install
COPY
. .
RUN
npm run build
EXPOSE
3000
CMD
[
"node"
,
"build"
]