14 lines
232 B
Docker
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;"]
|