Hugging Face
Models
Datasets
Spaces
Community
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...
0507064
sk-docker
/
Dockerfile
ronvolutional
chore: Tidy :)
0507064
over 2 years ago
raw
Copy download link
history
blame
Safe
157 Bytes
from
node:
18
-alpine
WORKDIR
/app
COPY
. .
COPY
package.json package-lock.json
RUN
npm install
COPY
. .
RUN
npm run build
EXPOSE
3000
CMD
[
"node"
,
"build"
]