Dockerfile 365 B

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