dockerfiles/tasks/Dockerfile

11 lines
177 B
Docker
Raw Normal View History

2022-03-07 13:55:05 +01:00
FROM alpine:3.14
2020-04-08 13:05:07 +02:00
RUN apk add --update --no-cache \
docker-compose \
docker
COPY entrypoint.sh /entrypoint
RUN chmod +x /entrypoint
ENTRYPOINT ["/entrypoint"]