build: fix docker #3293

This commit is contained in:
Johannes Millan 2024-07-26 08:50:42 +02:00
parent 8a99d2465d
commit adf7e3cfdc

View file

@ -32,7 +32,7 @@ FROM nginx:1-alpine
ENV PORT=80
# copy artifact build from the 'build environment'
COPY --from=build /app/dist /usr/share/nginx/html
COPY --from=build /app/dist/browser /usr/share/nginx/html
# expose port: defaults to 80
EXPOSE $PORT