Files
vision-start/Dockerfile
Jose Henrique 13bc74b205
Some checks failed
Build and Release to Staging / Build Vision Start (push) Failing after 33s
Build and Release to Staging / Build Vision Start Image (push) Has been skipped
Build and Release to Staging / Deploy Vision Start (staging) (push) Has been skipped
changing the way that pipelines work
2026-03-20 23:59:21 -03:00

14 lines
232 B
Docker

FROM nginx:alpine
# Copy the pre-built application
COPY dist/ /usr/share/nginx/html/
# Copy the manifest.json
COPY manifest.json /usr/share/nginx/html/
# Expose port 80
EXPOSE 80
# Start Nginx
CMD ["nginx", "-g", "daemon off;"]