Skip to content

Commit

Permalink
Fix Dockerfile dev package list (#424)
Browse files Browse the repository at this point in the history
  • Loading branch information
sea-kelp committed May 18, 2024
1 parent 299cfcb commit 72dca78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ ARG DEV_PACKAGES="firefox-esr"
RUN if [ "$IS_PROD" = "true" ]; then \
PACKAGES_TO_INSTALL="$BASE_PACKAGES"; \
else \
PACKAGES_TO_INSTALL="$PACKAGES_TO_INSTALL $DEV_PACKAGES"; \
PACKAGES_TO_INSTALL="$BASE_PACKAGES $DEV_PACKAGES"; \
fi && \
apt-get update && \
apt-get install -y -qq --no-install-recommends $PACKAGES_TO_INSTALL && \
Expand Down

0 comments on commit 72dca78

Please sign in to comment.