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

Try to fix docker builds #1128

Merged
merged 2 commits into from
Dec 4, 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
12 changes: 2 additions & 10 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -490,14 +490,6 @@ jobs:

publish_cli_binaries:
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') && github.repository == 'golemcloud/golem'
needs:
[
build-and-test,
worker-tests,
integration-tests,
cli-tests,
sharding-tests
]
name: Publish binaries of golem-cli
runs-on: ${{ matrix.os }}
strategy:
Expand All @@ -508,9 +500,9 @@ jobs:
- golem
cfg:
- rust-target: x86_64-unknown-linux-gnu
os: ubuntu-latest
os: ubuntu-latest-xlarge
- rust-target: aarch64-unknown-linux-gnu
os: ubuntu-latest
os: ubuntu-latest-xlarge
cross: true
- rust-target: x86_64-apple-darwin
os: macos-latest
Expand Down
3 changes: 1 addition & 2 deletions golem-component-compilation-service/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@ WORKDIR /app
COPY /target/$RUST_TARGET/release/golem-component-compilation-service ./
COPY /golem-component-compilation-service/config/ ./config/

RUN apt-get update && apt-get install -y libssl-dev
RUN apt-get update && apt-get install -y ca-certificates
RUN apt-get update && apt-get install -y pkg-config libssl-dev ca-certificates libfontconfig1-dev
RUN update-ca-certificates

EXPOSE 8080
Expand Down
3 changes: 1 addition & 2 deletions golem-component-service/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@ COPY /target/$RUST_TARGET/release/golem-component-service ./
COPY /golem-component-service/config/component-service.toml ./config/component-service.toml
COPY /golem-component-service/db ./db

RUN apt-get update && apt-get install -y libssl-dev
RUN apt-get update && apt-get install -y ca-certificates
RUN apt-get update && apt-get install -y pkg-config libssl-dev ca-certificates libfontconfig1-dev
RUN update-ca-certificates

EXPOSE 8080
Expand Down
3 changes: 1 addition & 2 deletions golem-shard-manager/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@ WORKDIR /app
COPY /target/$RUST_TARGET/release/golem-shard-manager ./
COPY /golem-shard-manager/config/shard-manager.toml ./config/shard-manager.toml

RUN apt-get update && apt-get install -y libssl-dev
RUN apt-get update && apt-get install -y ca-certificates
RUN apt-get update && apt-get install -y pkg-config libssl-dev ca-certificates libfontconfig1-dev
RUN update-ca-certificates

EXPOSE 8081
Expand Down
3 changes: 1 addition & 2 deletions golem-worker-executor/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@ WORKDIR /app
COPY /target/$RUST_TARGET/release/worker-executor ./
COPY /golem-worker-executor/config/worker-executor.toml ./config/worker-executor.toml

RUN apt-get update && apt-get install -y libssl-dev
RUN apt-get update && apt-get install -y ca-certificates
RUN apt-get update && apt-get install -y pkg-config libssl-dev ca-certificates libfontconfig1-dev
RUN update-ca-certificates

EXPOSE 9000
Expand Down
3 changes: 1 addition & 2 deletions golem-worker-service/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@ COPY /target/$RUST_TARGET/release/golem-worker-service ./
COPY /golem-worker-service/config/worker-service.toml ./config/worker-service.toml
COPY /golem-worker-service/db ./db

RUN apt-get update && apt-get install -y libssl-dev
RUN apt-get update && apt-get install -y ca-certificates
RUN apt-get update && apt-get install -y pkg-config libssl-dev ca-certificates libfontconfig1-dev
RUN update-ca-certificates

EXPOSE 9005
Expand Down
Loading