switched to default alpine image

This commit is contained in:
TKE
2020-04-14 17:28:24 +02:00
parent 1e56d28320
commit 8a13352786

View File

@@ -1,17 +1,12 @@
FROM gliderlabs/alpine:3.4 FROM alpine
MAINTAINER blacktop, https://github.com/blacktop MAINTAINER tabledevil
# Add scripts
COPY nsrl /nsrl COPY nsrl /nsrl
RUN apk-install tini RUN apk add -U tini gcc libc-dev python-dev py-pip p7zip python \
RUN apk-install -t .build-deps gcc libc-dev python-dev py-pip p7zip \
&& set -x \
&& apk --update add python $buildDeps \
&& rm -f /var/cache/apk/* \
&& pip install pybloom \ && pip install pybloom \
&& /nsrl/shrink_nsrl.sh \ && /nsrl/shrink_nsrl.sh \
&& apk del --purge .build-deps \ && apk del --purge gcc libc-dev python-dev py-pip p7zip \
&& rm -rf /tmp/* /root/.cache /var/cache/apk/* /nsrl/shrink_nsrl.sh && rm -rf /tmp/* /root/.cache /var/cache/apk/* /nsrl/shrink_nsrl.sh
WORKDIR /nsrl WORKDIR /nsrl