Compare commits
2 Commits
514a72db86
...
8795220c3e
Author | SHA1 | Date | |
---|---|---|---|
8795220c3e | |||
6e61442129 |
1
.gitignore
vendored
1
.gitignore
vendored
@ -9,3 +9,4 @@ yarn-error.log*
|
||||
.pnp.js
|
||||
|
||||
.vscode/*
|
||||
.idea/*
|
11
Dockerfile
Normal file
11
Dockerfile
Normal file
@ -0,0 +1,11 @@
|
||||
# Use a lightweight nginx image
|
||||
FROM nginx:alpine
|
||||
|
||||
# Copy your static files into the nginx web directory
|
||||
COPY . /usr/share/nginx/html
|
||||
|
||||
# Expose the port nginx serves from
|
||||
EXPOSE 80
|
||||
|
||||
# Start nginx
|
||||
CMD ["nginx", "-g", "daemon off;"]
|
@ -1,7 +0,0 @@
|
||||
{
|
||||
"root": ".",
|
||||
"clean_urls": false,
|
||||
"routes": {
|
||||
"/": "index.html"
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user