14 lines
270 B
Docker
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 |