We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f3f93bd commit 920265aCopy full SHA for 920265a
markdown_server/Dockerfile
@@ -26,7 +26,7 @@ RUN go build -o algernon . && \
26
mv algernon /usr/bin/algernon
27
28
# Compress Algernon binaries
29
-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
30
31
# Clean up /tmp directory
32
RUN rm -rf /tmp/*
0 commit comments