fake-firehose/Dockerfile
2022-12-17 18:55:34 -05:00

13 lines
No EOL
248 B
Docker

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