Skip to content

Commit

Permalink
docker fix
Browse files Browse the repository at this point in the history
  • Loading branch information
3np committed Jun 2, 2022
1 parent 53036cc commit 36cc393
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
10 changes: 7 additions & 3 deletions web/.dockerignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
.node_modules
.quasar
node_modules
frontend/.node_modules
frontend/.quasar
frontend/.vscode
frontend/node_modules
frontend/dist
frontend/public/assets/*.*
frontend/public/assets/glyphs/*.*

5 changes: 4 additions & 1 deletion web/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
FROM node:16-slim as builder
FROM node:16 as builder

RUN apt-get update && \
apt-get install -y --no-install-recommends build-essential && \
apt-get clean
RUN yarn global add @quasar/cli

COPY frontend /frontend
Expand Down

0 comments on commit 36cc393

Please sign in to comment.