Skip to content

Commit

Permalink
Comment out docker-compose from requirements.txt
Browse files Browse the repository at this point in the history
Comment out docker-compose from requirements.txt
  • Loading branch information
wickedyoda committed Aug 15, 2024
1 parent a200a74 commit b71c2de
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@ RUN apk add --no-cache \
ruby-dev \
nginx

# Install Docker Compose 2.x as a standalone binary
RUN curl -L "https://github.com/docker/compose/releases/download/v2.20.0/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose && \
chmod +x /usr/local/bin/docker-compose

# Upgrade pip, setuptools, and wheel
RUN pip3 install --upgrade pip setuptools wheel

Expand Down
2 changes: 1 addition & 1 deletion backend/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ click==8.1.6
databases==0.6.2
dnspython==2.3.0
docker==6.1.2
docker-compose==2.20.0
# docker-compose==2.20.0
email-validator==1.3.1
fastapi==0.103.1
fastapi-jwt-auth==0.6.1
Expand Down

0 comments on commit b71c2de

Please sign in to comment.