Skip to content

Commit

Permalink
fix: copy lib
Browse files Browse the repository at this point in the history
  • Loading branch information
bohdan-shulha committed Nov 7, 2024
1 parent 5efa3f3 commit 8b87594
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM ubuntu:latest

RUN apt-get update && \
apt-get install -y git curl s3cmd ca-certificates && \
apt-get install -y git curl s3cmd ca-certificates jq && \
# + Install Docker
install -m 0755 -d /etc/apt/keyrings && \
curl -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc && \
Expand All @@ -19,7 +19,10 @@ RUN apt-get update && \
echo 'All packages installed'

WORKDIR /ptah/bin

COPY bin/ ./
COPY lib/ ./

RUN chmod +x ./*

ENV PATH="/ptah/bin:${PATH}"

0 comments on commit 8b87594

Please sign in to comment.