Skip to content

Commit

Permalink
Small container fixes (#79)
Browse files Browse the repository at this point in the history
  • Loading branch information
smrtrfszm authored Jul 7, 2024
1 parent 2a85db8 commit 0c9ff7d
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .containerignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,7 @@ containerfiles/
tests
Makefile
.github/
.git
.env
.env.template
.gitignore
6 changes: 6 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,9 @@ build-images:
podman build -t ghcr.io/verseghy/matverseny-setup -f containerfiles/setup.Containerfile .
podman build -t ghcr.io/verseghy/matverseny-migration -f containerfiles/migration.Containerfile .
podman build -t ghcr.io/verseghy/matverseny-backend .

.PHONY: push-images
push-images:
podman push ghcr.io/verseghy/matverseny-setup
podman push ghcr.io/verseghy/matverseny-migration
podman push ghcr.io/verseghy/matverseny-backend
2 changes: 1 addition & 1 deletion containerfiles/setup.Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ RUN cargo install cargo-chef --locked --version "0.1.67" && \
FROM chef AS planner
WORKDIR /planner
COPY . .
RUN cargo chef prepare --bin setup --recipe-path recipe.json
RUN cargo chef prepare --recipe-path recipe.json



Expand Down

0 comments on commit 0c9ff7d

Please sign in to comment.