Skip to content

Commit

Permalink
On a never ending quest...
Browse files Browse the repository at this point in the history
markdown_server/Dockerfile
  • Loading branch information
crazyuploader committed Sep 25, 2024
1 parent 920265a commit 23e171e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion markdown_server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ RUN go build -o algernon . && \
mv algernon /usr/bin/algernon

# Compress Algernon binaries
RUN if [ $(arch) = "x86_64" ]; then apk add --no-cache upx; upx /usr/bin/algernon; fi
RUN if [ "$(arch)" = "x86_64" ]; then apk add --no-cache upx; upx /usr/bin/algernon; fi

# Clean up /tmp directory
RUN rm -rf /tmp/*
Expand Down

0 comments on commit 23e171e

Please sign in to comment.