chore: use `docker-compose` binary from the `docker-compose-plugin` pkg (#254)

This commit is contained in:
Muhammad Atif Ali 2024-01-17 12:16:07 +03:00 committed by GitHub
parent 69cdcbb657
commit 0dd8dc921d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 3 deletions

View File

@ -41,9 +41,8 @@ RUN apt-get update && \
# Enables Docker starting with systemd
RUN systemctl enable docker
# Add docker-compose
RUN curl -L "https://github.com/docker/compose/releases/download/v2.16.0/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
RUN chmod +x /usr/local/bin/docker-compose
# Create a symlink for standalone docker-compose usage
RUN ln -s /usr/libexec/docker/cli-plugins/docker-compose /usr/bin/docker-compose
# Make typing unicode characters in the terminal work.
ENV LANG en_US.UTF-8