Skip to content

Commit

Permalink
Fix Pharo dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
gcotelli committed Apr 25, 2024
1 parent d9cd459 commit d562cbb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docker/pharo/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ FROM ghcr.io/ba-st/pharo:v11.0.0
COPY --chown=pharo:users ./launchpad* ./
USER root
RUN set -eu; \
apt-get update; \
apt-get upgrade; \
apt-get install --assume-yes --no-install-recommends netcat-openbsd; \
apt-get clean; \
apt update; \
apt upgrade --assume-yes; \
apt install --assume-yes --no-install-recommends netcat-openbsd; \
apt clean; \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*; \
ln -s /opt/pharo/launchpad /usr/local/bin/launchpad; \
ln -s /opt/pharo/launchpad-list /usr/local/bin/launchpad-list; \
Expand Down

0 comments on commit d562cbb

Please sign in to comment.