docker #18

Merged
bmamihai merged 9 commits from docker into develop 2023-02-26 22:11:03 +00:00
2 changed files with 3 additions and 6 deletions
Showing only changes of commit 3e31ba21bd - Show all commits

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
bmamihai marked this conversation as resolved Outdated

What happens if we will refactor and add more files for the app?

What happens if we will refactor and add more files for the app?