Skip to content

Commit

Permalink
fix incorrect dockefile
Browse files Browse the repository at this point in the history
  • Loading branch information
philsupertramp authored Jan 25, 2023
1 parent cf9a789 commit 62420b8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions parser/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,9 @@ RUN pip install -r requirements.txt

RUN mkdir -p "/usr/app/parser/proxy/build" && \
wget "https://github.com/philsupertramp/chain-smoker/releases/download/proxy/proxy-2023-01-25-proxy-linux-amd64.tar.gz" -q -P "/usr/app/parser/proxy/build" && \
tar -xzf "/usr/app/parser/proxy/build/proxy--linux-amd64.tar.gz" -C "/usr/app/parser/proxy/build/" && \
rm -rf "/usr/app/parser/proxy/build/proxy--linux-amd64.tar.gz" && \
tar -xzf "/usr/app/parser/proxy/build/proxy-2023-01-25-proxy-linux-amd64.tar.gz" -C "/usr/app/parser/proxy/build/" && \
rm -rf "/usr/app/parser/proxy/build/proxy-2023-01-25-proxy-linux-amd64.tar.gz" && \
mv "/usr/app/parser/proxy/build/proxy-2023-01-25" "/usr/app/parser/proxy/build/proxy"
chmod +x "/usr/app/parser/proxy/build/proxy"


Expand Down

0 comments on commit 62420b8

Please sign in to comment.