migrate to astro #1

Merged
nin0 merged 18 commits from astro into main 2024-07-29 17:07:16 -04:00
Showing only changes of commit 8da480329b - Show all commits

8
Dockerfile Normal file
View file

@ -0,0 +1,8 @@
FROM node:lts-alpine3.17
WORKDIR /usr/src/app
COPY ["package.json", "pnpm-lock.yaml", "dist/*", "./"]
RUN pnpm i
EXPOSE 4321
RUN chown -R node /usr/src/app
USER node
CMD ["pnpm", "start"]