Dockerization

This commit is contained in:
2024-02-03 14:53:49 +03:00
parent 532e03e900
commit 6ef18366f0
4 changed files with 24 additions and 1 deletions

9
Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM oven/bun:1
LABEL authors="anatolykopyl"
WORKDIR /usr/node/app
COPY package.json bun.lockb ./
RUN bun install --frozen-lockfile
COPY . .