We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c81680 commit f185d3bCopy full SHA for f185d3b
Dockerfile
@@ -5,7 +5,8 @@ RUN apk add --no-cache curl
5
6
# Download the latest release binary
7
RUN curl -sL $(curl -s https://api.github.com/repos/tanq16/local-content-share/releases/latest | grep "browser_download_url.*local-content-share-linux-amd64\"" | cut -d '"' -f 4) -o local-content-share && \
8
- chmod +x local-content-share
+ chmod +x local-content-share && \
9
+ mv local-content-share /local-content-share
10
11
# Create app directory
12
WORKDIR /app
@@ -17,4 +18,4 @@ RUN mkdir data
17
18
EXPOSE 8080
19
20
# Run the binary
-CMD ["./local-content-share"]
21
+CMD ["/local-content-share"]
0 commit comments