chore(docker): change binary name inside container

This commit is contained in:
2025-06-29 13:48:01 +03:00
parent e7dfc8a92f
commit d621c90d61
4 changed files with 4 additions and 4 deletions

View File

@ -42,7 +42,7 @@ RUN addgroup -S -g ${PGID} app && \
adduser -S -u ${PUID} -G app -h /app app
# Copy the compiled binary from the builder stage
COPY --from=builder /app/target/release/sbrs /usr/local/bin/ruleset-sync
COPY --from=builder /app/target/release/sbrs /usr/local/bin/sbrs
# Copy the entrypoint script
COPY ./docker/entrypoint.sh /usr/local/bin/entrypoint.sh