Update Dockerfile

further-docker-cleanup
Glassed Silver 4 years ago committed by GitHub
parent 67b2e480f8
commit 2a41028253
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -8,7 +8,7 @@ RUN sh ./docker-build.sh
FROM ubuntu:20.04 as frontend FROM ubuntu:20.04 as frontend
ENV DEBIAN_FRONTEND=noninteractive ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get --no-install-recommends -y install \ RUN apt-get update && apt-get -y install \
wget \ wget \
curl \ curl \
gnupg && \ gnupg && \
@ -43,15 +43,15 @@ ENV DEBIAN_FRONTEND=noninteractive
RUN groupadd -g $GID $USER && useradd --system -g $USER --uid $UID $USER RUN groupadd -g $GID $USER && useradd --system -g $USER --uid $UID $USER
RUN curl -sL https://deb.nodesource.com/setup_12.x | bash - RUN curl -sL https://deb.nodesource.com/setup_12.x | bash -
RUN apt-get update && apt-get --no-install-recommends -y install \ RUN apt-get update && apt-get -y install \
npm \ npm \
python2 \ python2 \
python3 \ python3 \
atomicparsley && \ atomicparsley && \
apt-get install -f && \ apt-get install -f && \
apt autoremove --purge && \ apt-get autoremove --purge && \
apt autoremove && \ apt-get autoremove && \
apt clean && \ apt-get clean && \
rm -rf /var/lib/apt rm -rf /var/lib/apt
WORKDIR /app WORKDIR /app

Loading…
Cancel
Save