Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
jairwaal
/
image
like
1
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
image
/
Dockerfile
hadadrjt
image: Migrate to Node.js.
c34c995
about 1 month ago
raw
Copy download link
history
blame
contribute
delete
189 Bytes
#
# SPDX-FileCopyrightText: Hadad <hadad@linuxmail.org>
# SPDX-License-Identifier: Apache-2.0
#
FROM
node:latest
WORKDIR
/app
COPY
. .
RUN
npm install
EXPOSE
3000
CMD
[
"npm"
,
"start"
]