Files
automaker/apps/marketing/Dockerfile

11 lines
187 B
Docker

FROM nginx:alpine
# Copy the public directory to nginx's html directory
COPY public/ /usr/share/nginx/html/
# Expose port 80
EXPOSE 80
# Start nginx
CMD ["nginx", "-g", "daemon off;"]