diff --git a/Dockerfile b/Dockerfile index de44008..1813f78 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,9 +18,9 @@ COPY . . COPY --from=cacher /src/target target RUN make release -FROM debian:bullseye-slim -LABEL org.opencontainers.image.source https://github.com/forgeflux-org/starchart -RUN apt-get update && apt-get install -y ca-certificates +FROM debian:latest +#LABEL org.opencontainers.image.source https://github.com/forgeflux-org/starchart +RUN apt-get update && apt-get install -y ca-certificates libssl-dev COPY --from=builder /src/target/release/starchart /usr/local/bin/ COPY --from=builder /src/config/default.toml /etc/starchart/config.toml COPY scripts/entrypoint.sh /usr/local/bin diff --git a/Makefile b/Makefile index 9e89594..27242cf 100644 --- a/Makefile +++ b/Makefile @@ -98,11 +98,11 @@ doc: ## Prepare documentation cargo doc --no-deps --workspace --all-features docker: ## Build docker images - docker build -t forgedfed/starchart:master -t forgedfed/starchart:latest . + docker build -t forgeflux/starchart:master -t forgeflux/starchart:latest . docker-publish: docker ## Build and publish docker images - docker push forgedfed/starchart:master - docker push forgedfed/starchart:latest + docker push forgeflux/starchart:master + docker push forgeflux/starchart:latest lint: ## Lint codebase cargo fmt -v --all -- --emit files diff --git a/db/db-sqlx-sqlite/migrations/20250319120857_starchart_forgeflux_forge_type.sql b/db/db-sqlx-sqlite/migrations/20250319120857_starchart_forgeflux_forge_type.sql new file mode 100644 index 0000000..8151597 --- /dev/null +++ b/db/db-sqlx-sqlite/migrations/20250319120857_starchart_forgeflux_forge_type.sql @@ -0,0 +1 @@ +INSERT OR IGNORE INTO starchart_forge_type (name) VALUES('forgeflux');