Compare commits

..

2 commits

Author SHA1 Message Date
7e77a67aac Merge pull request 'Removed nginx to test if it works without' (#148) from infra/bugfix into main
All checks were successful
continuous-integration/drone/push Build is passing
Reviewed-on: #148
2021-07-12 21:48:10 +00:00
97b7bc3212 Removed nginx to test if it works without
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
2021-07-12 23:47:39 +02:00

View file

@ -7,8 +7,3 @@ COPY package-lock.json ./
RUN npm ci --silent
COPY . ./
RUN npm run build
FROM nginx:latest
COPY --from=builder /app/build /usr/share/nginx/html
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]