Merge pull request 'bugfixing..' (#145) from infra/bugfix into main
Some checks failed
continuous-integration/drone/push Build is failing

Reviewed-on: #145
This commit is contained in:
cami 2021-07-12 20:59:56 +00:00
commit 09bbb2e2a4

View file

@ -4,7 +4,7 @@ WORKDIR /app
ENV PATH /app/node_modules/.bin:$PATH
COPY package.json ./
COPY package-lock.json ./
RUN npm ci --silent
RUN npm ci --silent --force
RUN npm audit fix
COPY . ./
RUN npm run build