Skip to content

Commit

Permalink
Merge branch 'master' into dependabot/cargo/dependencies-ad2f36e187
Browse files Browse the repository at this point in the history
  • Loading branch information
m4tx authored Jul 1, 2024
2 parents 33bb551 + 92529e2 commit 6839231
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
images: ${{ env.REGISTRY }}/m4tx/chombo-gen-backend

- name: Build and push Docker image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
file: chombo-gen-backend.dockerfile
Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:
images: ${{ env.REGISTRY }}/m4tx/chombo-gen-frontend

- name: Build and push Docker image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
file: chombo-gen-frontend.dockerfile
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
images: ${{ env.REGISTRY }}/m4tx/chombo-gen-proxy

- name: Build and push Docker image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
file: chombo-gen-proxy.dockerfile
Expand Down
2 changes: 1 addition & 1 deletion chombo-gen-backend.dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.77 as builder
FROM rust:1.79 as builder
WORKDIR /usr/src/chombo-gen
COPY . .
WORKDIR /usr/src/chombo-gen/chombo-gen-backend
Expand Down
4 changes: 2 additions & 2 deletions chombo-gen-frontend.dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.77 as builder
FROM rust:1.79 as builder
RUN rustup target add wasm32-unknown-unknown && \
cargo install trunk
WORKDIR /usr/src/chombo-gen
Expand All @@ -7,5 +7,5 @@ WORKDIR /usr/src/chombo-gen/chombo-gen-frontend
ENV CHOMBO_GEN_API_URL=/api
RUN trunk build --release

FROM nginx:1.25
FROM nginx:1.27
COPY --from=builder /usr/src/chombo-gen/chombo-gen-frontend/dist /usr/share/nginx/html
2 changes: 1 addition & 1 deletion chombo-gen-proxy.dockerfile
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
FROM nginx:1.25
FROM nginx:1.27
COPY proxy/default.conf /etc/nginx/conf.d/default.conf

0 comments on commit 6839231

Please sign in to comment.