FROM debian:latest WORKDIR /app COPY ./setup.sh ./setup.sh RUN apt-get update; apt-get upgrade -y; apt-get install zip curl -y && \ curl https://cloud.massivebox.net/api/public/dl/fLgOAQNc -o templates.zip && unzip templates.zip && rm templates.zip && \ chmod +x setup.sh && ./setup.sh && rm setup.sh && \ chmod +x app CMD ["./app"]