Dockerize

This commit is contained in:
2024-02-03 21:33:12 +03:00
parent 0b30c26d2b
commit 91c0ab6e31
2 changed files with 20 additions and 0 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 . .