Use new container

This commit is contained in:
Tom 2020-06-26 11:00:15 +02:00
parent 270aa06487
commit 31d32f6f08

View File

@ -1,5 +1,9 @@
FROM alpine
FROM debian:buster-slim
RUN apk add --update --no-cache bash curl jq
RUN apt-get update && \
apt-get install -y --no-install-recommends \
jq \
php-json-schema &&
CMD ["sh"]
CMD ["bash"]