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 curl -fsSL https://deb.nodesource.com/setup_18.x | bash -
RUN apt-get install -y nodejs RUN apt-get install -y nodejs
RUN mkdir -p server/ssl COPY . /app/
RUN mkdir -p public/
COPY .env app.js package.json /app/
COPY server/ssl/* /app/server/ssl/
COPY public/* /app/public/
RUN npm install RUN npm install