16 lines
334 B
Docker
16 lines
334 B
Docker
FROM ubuntu:latest
|
|
|
|
# Install necessary packages
|
|
RUN apt-get update && apt-get install -y openssh-client git
|
|
|
|
# Copy the script into the container
|
|
COPY app.sh /app/app.sh
|
|
|
|
# Set the working directory
|
|
WORKDIR /app
|
|
|
|
# Make the script executable
|
|
RUN chmod +x app.sh
|
|
|
|
# Set the entrypoint to execute the script
|
|
ENTRYPOINT ["/app/app.sh"]
|