ium_478841/Dockerfile
2022-03-28 11:21:44 +02:00

14 lines
270 B
Docker

# Inherit from some existing image
FROM ubuntu:latest
# Install required dependencies
RUN apt update && apt install -y figlet
# Create the /app directory
WORKDIR /app
# Copy scripts to the catalog
COPY ./figlet-loop.sh ./
# Run the copied script
CMD ./figlet-loop.sh