FIX: build scripts

This commit is contained in:
Eike Ahmels
2021-10-27 21:14:34 +02:00
parent 8bb6b9e6c1
commit b284f8f971
2 changed files with 6 additions and 0 deletions

View File

@@ -16,6 +16,10 @@ RUN bash /tmp/install-debian.sh 2>/dev/null; exit 0;
USER root
RUN apt-get -y autoremove \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
COPY start-api /bin/start-api
RUN chmod +x /bin/start-api

View File

@@ -7,6 +7,8 @@ COPY nginx/common_vars.conf /etc/nginx/conf.d/common_vars.conf
COPY nginx/upstreams.conf /etc/nginx/conf.d/upstreams.conf
COPY nginx/mainsail.conf /etc/nginx/conf.d/default.conf
RUN apt-get update \
&& apt-get install -y unzip
COPY start-web /bin/start-web
RUN chmod +x /bin/start-web