mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-01-30 22:32:04 +00:00
11 lines
187 B
Docker
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;"]
|