Skip to content

Commit

Permalink
Fix Dockerfile, closes #112
Browse files Browse the repository at this point in the history
  • Loading branch information
k3d3 committed Jun 6, 2024
1 parent 17714e2 commit 84ca2d7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ WORKDIR /app
#ADD --chown=rust:rust . /app/
ADD . /app/

ARG CARGO_BUILD_EXTRA
RUN cargo build --release $CARGO_BUILD_EXTRA
ARG CARGO_BUILD_EXTRA=" "
RUN cargo build --release ${CARGO_BUILD_EXTRA}

FROM debian:latest

Expand All @@ -16,7 +16,7 @@ RUN apt update \
&& apt install -y \
ca-certificates \
git \
libssl1.1 \
libssl3 \
&& git config --global --add safe.directory '*'

ENTRYPOINT [ "/usr/local/bin/panamax" ]
Expand Down

0 comments on commit 84ca2d7

Please sign in to comment.