Dockerfile Update

This commit is contained in:
MoisesTapia 2020-07-26 14:37:55 -05:00
parent d55b2af540
commit f16308d2d3
No known key found for this signature in database
GPG Key ID: BE22111DAB113FC3

View File

@ -5,11 +5,12 @@ WORKDIR /home/
RUN apt-get update
RUN apt-get install --no-install-recommends -y git && \
RUN apt-get install -y --no-install-recommends git && \
apt-get install --no-install-recommends -y python3.7 && \
apt-get install -y python3-pip && \
apt-get install --no-install-recommends -y php && \
apt-get update && \
apt-get install --no-install-recommends -y php
RUN apt-get update && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*