Compare commits

...

2 commits

Author SHA1 Message Date
09bbb2e2a4 Merge pull request 'bugfixing..' (#145) from infra/bugfix into main
Some checks failed
continuous-integration/drone/push Build is failing
Reviewed-on: #145
2021-07-12 20:59:56 +00:00
f4e501458e bugfixing..
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
2021-07-12 22:59:34 +02:00

View file

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