Commit da63735d authored by Tobias Munk's avatar Tobias Munk

reduced nginx installation size by removing temp files

parent f2492194
Pipeline #13761 passed with stages
in 52 seconds
......@@ -6,7 +6,12 @@ ADD https://github.com/jwilder/forego/releases/download/v0.16.1/forego /usr/loca
RUN chmod u+x /usr/local/bin/forego
# Install nginx
RUN apt-get update && apt-get install -y --force-yes nginx-full
RUN apt-get update \
&& apt-get install -y --force-yes \
nginx-full \
--no-install-recommends && \
apt-get clean && \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
# Add configuration files
# TODO: temporary workaround for missing configs, use separate folder?
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment