website_hoover/Dockerfile

10 lines
94 B
Docker

FROM alpine
WORKDIR /usr/src/app
RUN apk add wget
COPY ./main.sh .
ENTRYPOINT [./main.sh]