master
Skye 2 years ago
parent 063e745313
commit 023cf2f038
Signed by: me
GPG Key ID: 0104BC05F41B77B8

@ -0,0 +1,10 @@
.DS_Store
node_modules
/build
/.svelte-kit
/package
.env
.env.*
!.env.example
vite.config.js.timestamp-*
vite.config.ts.timestamp-*

@ -0,0 +1,11 @@
FROM node:18 AS build-env
COPY . /app
WORKDIR /app
RUN yarn
RUN yarn build
FROM node:18
COPY --from=build-env /app/build /app
WORKDIR /app
CMD ["index.js"]
Loading…
Cancel
Save