Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
victor
/
sveltekit-supabase
like
1
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
c95db22
sveltekit-supabase
/
Dockerfile
victor
HF Staff
init
c95db22
almost 2 years ago
raw
Copy download link
history
blame
Safe
128 Bytes
FROM
node:
18
WORKDIR
/app
COPY
package.json ./
RUN
npm install
COPY
. .
RUN
npm run build
CMD
[
"node"
,
"build"
]
EXPOSE
3000