ecodash/.woodpecker/Dockerfile-woodpecker
2023-06-24 09:00:20 +02:00

11 lines
347 B
Plaintext

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"]