2 Commits

Author SHA1 Message Date
5af681939e Docker 2024-02-04 14:24:21 +03:00
6b161f2e2c Migrate to yarn 2023-06-14 22:46:53 +03:00
6 changed files with 10821 additions and 35232 deletions

9
backend/Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM node:20-alpine
LABEL authors="anatolykopyl"
WORKDIR /usr/node/app
COPY package.json yarn.lock ./
RUN yarn install --frozen-lockfile
COPY . .

View File

@@ -0,0 +1,11 @@
version: '3'
services:
flexpatrol-bingo:
image: git.radner.ru/anatolykopyl/flexpatrol-bingo:latest
container_name: flexpatrol-bingo
working_dir: /usr/node/app
ports:
- "3004:3000"
command: >
sh -c "node index.js"

5192
backend/package-lock.json generated

File diff suppressed because it is too large Load Diff

1800
backend/yarn.lock Normal file

File diff suppressed because it is too large Load Diff

30040
frontend/package-lock.json generated

File diff suppressed because it is too large Load Diff

9001
frontend/yarn.lock Normal file

File diff suppressed because it is too large Load Diff