Finished implementation of roulette

This commit is contained in:
2022-12-06 23:40:23 +01:00
parent 027e99f8e3
commit dd8db239d6
4 changed files with 10 additions and 23 deletions

View File

@@ -1,8 +1,7 @@
FROM node:latest
WORKDIR /app
COPY {{app_path}}package.json ./
COPY ./app/package.json ./
RUN npm install
COPY {{app_path}} ./
COPY ./app/ ./
RUN npm run build
EXPOSE 8080
CMD ["npm", "run", "start"]