Use pip-tools to manage dependencies

This commit is contained in:
Sonny Bakker 2022-05-26 11:12:22 +02:00
parent 53aa8da2dd
commit 20309e70fa
8 changed files with 275 additions and 1369 deletions

View file

@ -1,9 +1,10 @@
FROM node:12
FROM node:12-bullseye
WORKDIR /app
RUN mkdir /app/src
COPY package.json package-lock.json /app/
RUN npm install
COPY . /app/
COPY ./src /app/src