Skip to content
Snippets Groups Projects

Remove WP.org plugin-deploy image

Merged Erick Hitter requested to merge submodule/wp-plugin-deploy into master
Files
3
+ 0
16
FROM debian:stretch-slim
LABEL maintainer="ethitter"
LABEL version="1.0"
RUN echo "deb http://security.debian.org/ stretch/updates main" >> /etc/apt/sources.list
RUN apt-get update \
&& apt-get -y --no-install-recommends install \
ca-certificates \
curl \
git \
rsync \
subversion \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
Loading