Escape and lowercase variables

This commit is contained in:
Manuel 2023-09-12 22:31:57 +02:00
parent 96ff13057f
commit 35aa9ed7fa
Signed by: Manuel
GPG key ID: 4085037435E1F07A
5 changed files with 9 additions and 9 deletions

View file

@ -9,8 +9,8 @@ RUN cargo install --path . -j $(nproc)
FROM alpine:latest
COPY --from=build /usr/local/cargo/bin/$REPO_NAME /app/$REPO_NAME
COPY --from=build /usr/local/cargo/bin/$REPO_NAME_LOWER /app/$REPO_NAME_LOWER
WORKDIR /app
RUN apk add --no-cache libgcc
CMD ["./${REPO_NAME}"]
CMD ["./${REPO_NAME_LOWER}"]