Compare commits
5 Commits
3.1-nohash
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| c64d5a96cb | |||
| 379bacf023 | |||
| ad2420775e | |||
| fe1a62a7b3 | |||
| bf9f6e5cd5 |
11
action.yml
11
action.yml
@@ -18,15 +18,6 @@ runs:
|
||||
with:
|
||||
entrypoint: "/bin/bash"
|
||||
args: |
|
||||
-c 'echo "FROM nginx:alpine" > Dockerfile && \
|
||||
echo "COPY dist /usr/share/nginx/html" >> Dockerfile && \
|
||||
echo "RUN echo \"server {\" > /etc/nginx/conf.d/default.conf" >> Dockerfile && \
|
||||
echo "RUN echo \" listen 80;\" >> /etc/nginx/conf.d/default.conf" >> Dockerfile && \
|
||||
echo "RUN echo \" index index.html;\" >> /etc/nginx/conf.d/default.conf" >> Dockerfile && \
|
||||
echo "RUN echo \" location / {\" >> /etc/nginx/conf.d/default.conf" >> Dockerfile && \
|
||||
echo "RUN echo \" try_files \$uri \$uri/ /index.html;\" >> /etc/nginx/conf.d/default.conf" >> Dockerfile && \
|
||||
echo "RUN echo \" }\" >> /etc/nginx/conf.d/default.conf" >> Dockerfile && \
|
||||
echo "RUN echo \"}\" >> /etc/nginx/conf.d/default.conf" >> Dockerfile && \
|
||||
cat Dockerfile'
|
||||
-c 'cp "${{ github.action_path }}/nginx.conf" ./ && cp "${{ github.action_path }}/vue.Dockerfile" ./Dockerfile'
|
||||
|
||||
- uses: actions/docker-build-push@main
|
||||
|
||||
9
nginx.conf
Normal file
9
nginx.conf
Normal file
@@ -0,0 +1,9 @@
|
||||
server {
|
||||
listen 80;
|
||||
root /usr/share/nginx/html;
|
||||
index index.html;
|
||||
|
||||
location / {
|
||||
try_files $uri $uri/ /index.html;
|
||||
}
|
||||
}
|
||||
3
vue.Dockerfile
Normal file
3
vue.Dockerfile
Normal file
@@ -0,0 +1,3 @@
|
||||
FROM nginx:alpine
|
||||
COPY dist /usr/share/nginx/html
|
||||
COPY nginx.conf /etc/nginx/conf.d/default.conf
|
||||
Reference in New Issue
Block a user