Skip to content

Commit

Permalink
update profiler workflow 4
Browse files Browse the repository at this point in the history
Signed-off-by: BAStos525 <[email protected]>
  • Loading branch information
BAStos525 committed Feb 13, 2024
1 parent a928849 commit fde3496
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile.glibc
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM debian:bookworm-slim AS builder

# install required packages
RUN apt-get update -y && \
apt-get install -y curl build-essential mold
apt-get install -y curl build-essential mold libssl-dev

# set up Rust toolchain
RUN curl https://sh.rustup.rs -sSf | bash -s -- -y
Expand Down Expand Up @@ -40,7 +40,7 @@ ENV GID=1001

RUN set -ex && \
apt-get update -y && \
apt-get install -y curl ca-certificates && \
apt-get install -y curl ca-certificates libssl-dev && \
addgroup --gid $GID $USER && \
adduser \
--disabled-password \
Expand All @@ -60,4 +60,4 @@ COPY --from=builder $TARGET_DIR/iroha $BIN_PATH
COPY --from=builder $TARGET_DIR/iroha_client_cli $BIN_PATH
COPY --from=builder $TARGET_DIR/kagami $BIN_PATH
USER $USER
CMD ["iroha"]
CMD ["iroha"]

0 comments on commit fde3496

Please sign in to comment.