| 1234567891011121314151617 |
- # Use the official Alpine Linux image as a base
- FROM alpine:latest
- # Set the working directory to /app
- WORKDIR /app
- # Install the required packages
- RUN apk update && \
- apk add --no-cache wget bash rsync mc sudo vim zip curl
- # Configure the image for file operations
- RUN mkdir -p /mnt \
- && chmod 755 /mnt
- # Set the default command to bash
- CMD ["bash"]
|