1
0
Fork 0
fake-firehose/Dockerfile

15 lines
274 B
Docker
Raw Normal View History

2022-12-17 23:55:34 +00:00
# syntax=docker/dockerfile:1
FROM ubuntu
RUN apt update && apt dist-upgrade -y
RUN apt install -y \
jq \
curl \
nano \
vim \
dnsutils \
wget
2022-12-17 23:55:34 +00:00
COPY ./scripts /scripts
WORKDIR /scripts
RUN chmod +x /scripts/*
ENTRYPOINT [ "/scripts/start-firehose.sh" ]