Repo setup

This commit is contained in:
mrjvs
2023-08-23 13:54:26 +02:00
parent c852a33cc1
commit bfcf6d0568
21 changed files with 1866 additions and 0 deletions

16
Dockerfile Normal file
View File

@@ -0,0 +1,16 @@
FROM node:18-alpine
WORKDIR /app
# install dependencies
COPY package*.json ./
RUN npm ci
# build source
COPY . ./
RUN npm run build
# start server
EXPOSE 80
ENV CONF_SERVER__PORT=80
ENV NODE_ENV=production
CMD ["npm", "run", "start"]