You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
FROM docker.01-edu.org/debian:10.9-slim
|
|
|
|
|
|
|
|
RUN apt-get update
|
|
|
|
RUN apt-get -y install jq curl
|
|
|
|
|
|
|
|
WORKDIR /app/assets/superhero
|
|
|
|
RUN curl --remote-name --location https://demo.01-edu.org/assets/superhero/all.json
|
|
|
|
|
|
|
|
WORKDIR /tmp/installation
|
|
|
|
|
|
|
|
RUN curl --remote-name --location https://github.com/caddyserver/caddy/releases/download/v2.3.0/caddy_2.3.0_linux_amd64.tar.gz
|
|
|
|
RUN tar xf caddy_2.3.0_linux_amd64.tar.gz
|
|
|
|
RUN mv caddy /usr/local/bin
|
|
|
|
RUN apt-get -y install libcap2-bin
|
|
|
|
RUN setcap 'cap_net_bind_service=+ep' /usr/local/bin/caddy
|
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
|
|
|
RUN rm -rf /tmp/installation
|
|
|
|
|
|
|
|
COPY . /app
|
|
|
|
ENTRYPOINT ["/app/entrypoint.sh"]
|