Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Small container fixes #79

Merged
merged 3 commits into from
Jul 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading