1
0
Fork 0
This repository has been archived on 2025-01-15. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
devops-with-docker/Part3/Exercise04/Dockerfile
2023-03-17 12:43:43 +02:00

5 lines
130 B
Docker

FROM docker:23.0.1-cli
WORKDIR /usr/src/app
COPY ./builder.sh ./builder.sh
RUN apk add git
ENTRYPOINT ["/usr/src/app/builder.sh"]