This repository has been archived on 2025-08-02. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
flexpatrol.ru-form-handler/Dockerfile
2024-02-03 14:53:49 +03:00

10 lines
144 B
Docker

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