We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24ef606 commit 11cd05bCopy full SHA for 11cd05b
.github/workflows/push_docker_hub.yaml
@@ -20,5 +20,5 @@ jobs:
20
21
- name: Build and Push Docker Compose
22
run: |
23
- docker-compose -f docker-compose.yaml build
+ docker-compose -f docker-compose.yaml build --no-cache
24
docker-compose -f docker-compose.yaml push
docker/nginx/Dockerfile
@@ -13,8 +13,10 @@ RUN npm run build
13
14
15
FROM nginx:latest
16
+RUN rm /usr/share/nginx/html/*
17
COPY --from=build_frontend /app/build /usr/share/nginx/html
18
RUN rm /etc/nginx/conf.d/default.conf
19
+
COPY ./docker/nginx/nginx.conf /etc/nginx/conf.d
EXPOSE 80
0 commit comments