replace individual copy with copy all

This commit is contained in:
bmamihai 2022-12-15 13:20:22 +02:00
parent cdf02756d3
commit 3e31ba21bd
2 changed files with 3 additions and 6 deletions

2
.dockerignore Normal file
View File

@ -0,0 +1,2 @@
node_modules
doc

View File

@ -8,12 +8,7 @@ RUN apt-get update && \
RUN curl -fsSL https://deb.nodesource.com/setup_18.x | bash -
RUN apt-get install -y nodejs
RUN mkdir -p server/ssl
RUN mkdir -p public/
COPY .env app.js package.json /app/
COPY server/ssl/* /app/server/ssl/
COPY public/* /app/public/
COPY . /app/
RUN npm install