Working on better thing

This commit is contained in:
Fabian Stamm
2023-07-02 15:51:49 +02:00
parent a9767da606
commit 8aa6d43483
35 changed files with 6591 additions and 1234 deletions

View File

@ -7,11 +7,11 @@ WORKDIR /usr/src/app
RUN npm config set registry https://npm.hibas123.de
COPY ["package.json", "tsconfig.json", "/usr/src/app/"]
COPY ["Server/package.json", "Server/tsconfig.json", "/usr/src/app/"]
RUN npm install
COPY src/ /usr/src/app/src
COPY public/ /usr/src/app/public
COPY Server/lib/ /usr/src/app/lib
COPY Client/dist/ /usr/src/app/public
EXPOSE 3000/tcp
CMD ["npm", "run", "start"]