Skip to content

Commit 84ca2d7

Browse files
committed
Fix Dockerfile, closes panamax-rs#112
1 parent 17714e2 commit 84ca2d7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ WORKDIR /app
55
#ADD --chown=rust:rust . /app/
66
ADD . /app/
77

8-
ARG CARGO_BUILD_EXTRA
9-
RUN cargo build --release $CARGO_BUILD_EXTRA
8+
ARG CARGO_BUILD_EXTRA=" "
9+
RUN cargo build --release ${CARGO_BUILD_EXTRA}
1010

1111
FROM debian:latest
1212

@@ -16,7 +16,7 @@ RUN apt update \
1616
&& apt install -y \
1717
ca-certificates \
1818
git \
19-
libssl1.1 \
19+
libssl3 \
2020
&& git config --global --add safe.directory '*'
2121

2222
ENTRYPOINT [ "/usr/local/bin/panamax" ]

0 commit comments

Comments
 (0)