mirror of
https://github.com/raynormast/fake-firehose.git
synced 2024-12-22 07:43:10 +00:00
13 lines
No EOL
248 B
Docker
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" ] |