fix: use correct env var for backup dir
All checks were successful
ci/woodpecker/push/release Pipeline was successful
ci/woodpecker/tag/clippy Pipeline was successful
ci/woodpecker/tag/lint Pipeline was successful
ci/woodpecker/tag/build Pipeline was successful
ci/woodpecker/tag/release Pipeline was successful
ci/woodpecker/push/lint Pipeline was successful
ci/woodpecker/push/build Pipeline was successful
ci/woodpecker/push/clippy Pipeline was successful

This commit is contained in:
Jef Roosens 2023-06-13 13:44:08 +02:00
parent 375a68fbd6
commit 9ce8199d5f
Signed by: Jef Roosens
GPG key ID: B75D4F293C7052DB
5 changed files with 12 additions and 5 deletions

View file

@ -22,7 +22,7 @@ FROM eclipse-temurin:18-jre-alpine
# Build arguments
ARG MC_VERSION=1.19.4
ARG PAPERMC_VERSION=545
ARG PAPERMC_VERSION=525
RUN addgroup -Sg 1000 paper && \
adduser -SHG paper -u 1000 paper
@ -61,4 +61,5 @@ EXPOSE 25565
# Switch to non-root user
USER paper:paper
ENTRYPOINT ["/bin/alex", "paper"]
ENTRYPOINT ["/bin/dumb-init", "--"]
CMD ["/bin/alex", "paper"]