Skip to content
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
4 changes: 4 additions & 0 deletions container/aquila/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ FROM ghcr.io/code0-tech/reticulum/ci-builds/rust:$RETICULUM_IMAGE_TAG AS builder

WORKDIR /aquila
COPY projects/aquila .

ARG RETICULUM_IMAGE_TAG=local
RUN sed -i "s/version = \"0.0.0\"/version = \"$RETICULUM_IMAGE_TAG\"/" Cargo.toml

RUN cargo build --release

FROM alpine:3.22
Expand Down
4 changes: 4 additions & 0 deletions container/draco/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ ARG VARIANT

WORKDIR /draco
COPY projects/draco .

ARG RETICULUM_IMAGE_TAG=local
RUN sed -i "s/version = \"0.0.0\"/version = \"$RETICULUM_IMAGE_TAG\"/" Cargo.toml

WORKDIR /draco/adapters/$VARIANT
RUN cargo build --release

Expand Down
3 changes: 3 additions & 0 deletions container/sculptor/Dockerfile.erb
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ COPY projects/sculptor/src/packages/cloud src/packages/cloud

ENV EDITION=<%= variant %>

ARG RETICULUM_IMAGE_TAG=local
RUN npm version --git-tag-version=false $RETICULUM_IMAGE_TAG

RUN npm run build

ENTRYPOINT ["npm", "run", "start"]
4 changes: 4 additions & 0 deletions container/taurus/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ FROM ghcr.io/code0-tech/reticulum/ci-builds/rust:$RETICULUM_IMAGE_TAG AS builder

WORKDIR /taurus
COPY projects/taurus .

ARG RETICULUM_IMAGE_TAG=local
RUN sed -i "s/version = \"0.0.0\"/version = \"$RETICULUM_IMAGE_TAG\"/" Cargo.toml

RUN cargo build --release

RUN apk add openssl-dev openssl-libs-static pkgconfig
Expand Down