Skip to content

Commit 9b50a3c

Browse files
committed
Remove code associated with installation dependencies
This is unnecessary now that we use a multi-stage build.
1 parent 44dc773 commit 9b50a3c

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

Dockerfile

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -128,12 +128,10 @@ ENV DEPS="build-essential \
128128
texlive-science \
129129
fontconfig \
130130
redis-tools"
131-
# ENV INSTALL_DEPS \
132-
# git
133131
RUN apt update --quiet --quiet \
134132
&& apt install --quiet --quiet --yes \
135133
--no-install-recommends --no-install-suggests \
136-
$DEPS $INSTALL_DEPS
134+
$DEPS
137135

138136
# Setup texlive latex stuff.
139137
RUN tlmgr init-usertree
@@ -151,11 +149,6 @@ COPY --from=compile-stage --chown=${CISA_USER}:${CISA_GROUP} ${VIRTUAL_ENV} ${VI
151149
RUN ln -fs "$(command -v python3)" "${VIRTUAL_ENV}"/bin/python3
152150
ENV PATH="${VIRTUAL_ENV}/bin:$PATH"
153151

154-
###
155-
# Remove install dependencies
156-
###
157-
# RUN apt remove --quiet --quiet $INSTALL_DEPS
158-
159152
###
160153
# Clean up aptitude cruft
161154
###

0 commit comments

Comments
 (0)