Some logistic changes

This commit is contained in:
Ben Sarmiento
2023-11-19 03:34:15 +01:00
parent 81d1df9bb5
commit 49bdb810e3
4 changed files with 44 additions and 8 deletions

View File

@@ -13,8 +13,8 @@ RUN go build -o zurg cmd/zurg/main.go
FROM alpine:3 AS obfuscator
WORKDIR /app
COPY --from=builder /app/zurg .
RUN apk add --no-cache upx
RUN upx --brute zurg
# RUN apk add --no-cache upx
# RUN upx --brute zurg
# Final stage
FROM alpine:3
@@ -24,7 +24,7 @@ WORKDIR /app
COPY --from=obfuscator /app/zurg .
# Copy the rest of the application files, including the config.yml
COPY config.yml.example /app/config.yml
COPY config.example.yml /app/config.yml
# Install runtime dependencies and configure FUSE
RUN apk add --no-cache fuse3 \