Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -109,9 +109,8 @@ FROM ubuntu:22.04
LABEL maintainer="[email protected]"
ARG DEBIAN_FRONTEND=noninteractive

COPY --from=builder /usr/bin/ /usr/bin/
COPY --from=builder /usr/local/ /usr/local/
COPY --from=builder /opt/ /opt/
COPY --from=builder /usr /usr
COPY --from=builder /opt /opt

# Avoid "delaying package configuration, since apt-utils is not installed"
RUN apt update && \
Expand Down Expand Up @@ -147,7 +146,7 @@ RUN curl https://packagecloud.io/install/repositories/cs50/repo/script.deb.sh |
apt install --no-install-recommends --yes \
astyle \
bash-completion \
build-essential `# libc, gcc, g++, make, dpkg-dev etc.`\
build-essential `# dpkg-dev, libc, gcc, g++, make, etc.`\
clang \
coreutils `# For fold` \
cowsay \
Expand All @@ -159,8 +158,9 @@ RUN curl https://packagecloud.io/install/repositories/cs50/repo/script.deb.sh |
git-lfs \
jq \
less \
libcs50 `# CS50 library` \
libcs50 \
libmagic-dev `# For style50` \
libpango-1.0-0 libharfbuzz0b libpangoft2-1.0-0 `# For render50` \
libyaml-0-2 `# Runtime package for gem` \
man \
man-db \
Expand All @@ -173,7 +173,6 @@ RUN curl https://packagecloud.io/install/repositories/cs50/repo/script.deb.sh |
unzip \
valgrind \
vim \
weasyprint `# For render50` \
zip && \
apt clean && \
pip3 install --no-cache-dir \
Expand Down