Initial commit
This commit is contained in:
commit
960e9e0ff8
20 changed files with 877 additions and 0 deletions
11
Dockerfile
Normal file
11
Dockerfile
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
# Use the official lightweight Nginx image
|
||||
FROM nginx:alpine
|
||||
|
||||
# Remove the default nginx website content
|
||||
RUN rm -rf /usr/share/nginx/html/*
|
||||
|
||||
# Copy our app's build files to the nginx web root directory
|
||||
COPY public_build/ /usr/share/nginx/html
|
||||
|
||||
# Expose port 80
|
||||
EXPOSE 80
|
||||
Loading…
Add table
Add a link
Reference in a new issue