Disable signups, minor fixes
All checks were successful
ci / build-image (push) Successful in 2m33s

This commit is contained in:
Jonathan Cremin 2025-05-30 09:03:26 +01:00
parent d89c8872d2
commit 0d72c4bf3b
7 changed files with 671 additions and 248 deletions

17
Containerfile Normal file
View file

@ -0,0 +1,17 @@
FROM node:16.13.1
WORKDIR /app
COPY package.json package.json
COPY yarn.lock yarn.lock
RUN yarn
COPY . .
RUN yarn run build
ENV PORT 3000
EXPOSE 3000
CMD ["yarn", "start"]