Prvotní nástřel fungující aplikace

This commit is contained in:
Martin Berka
2023-06-01 23:05:51 +02:00
parent bf379e13ed
commit 12583e6efb
59 changed files with 2194 additions and 1011 deletions

15
server/Dockerfile Normal file
View File

@@ -0,0 +1,15 @@
FROM node:alpine
ENV LANG cs_CZ.UTF-8
WORKDIR /app
COPY package.json /app
COPY yarn.lock /app
COPY .env.production /app
RUN yarn install --frozen-lockfile
ADD ./dist /app
CMD [ "node", "/app/index.js" ]