launchpad-server (latest)

Published 2024-11-15 22:17:31 -07:00 by kyaustad in kyaustad/launchpad-server

Installation

docker pull git.crabinteractive.com/kyaustad/launchpad-server:latest
sha256:8b7ba2db0e59f70e0fbe463b1b8688cf658d457c2453bee07d6597d69cbbc371

Image Layers

ARG RELEASE
ARG LAUNCHPAD_BUILD_ARCH
LABEL org.opencontainers.image.ref.name=ubuntu
LABEL org.opencontainers.image.version=22.04
ADD file:ebe009f86035c175ba244badd298a2582914415cf62783d510eab3a311a5d4e1 in /
CMD ["/bin/bash"]
ENV DEBIAN_FRONTEND=noninteractive
RUN /bin/sh -c apt-get update && apt-get install -y curl wget bash git unzip python3 python3-pip vsftpd && apt-get clean && rm -rf /var/lib/apt/lists/* # buildkit
WORKDIR /app
ADD https://raw.githubusercontent.com/Nihlus/Launchpad/master/Scripts/launchpad-server-setup.sh /app/launchpad-server-setup.sh # buildkit
RUN /bin/sh -c chmod +x /app/launchpad-server-setup.sh # buildkit
RUN /bin/sh -c echo "anonymous_enable=YES" >> /etc/vsftpd.conf && echo "write_enable=YES" >> /etc/vsftpd.conf && echo "local_umask=022" >> /etc/vsftpd.conf && echo "anon_upload_enable=NO" >> /etc/vsftpd.conf # buildkit
EXPOSE map[21/tcp:{} 8080/tcp:{}]
RUN /bin/sh -c ./launchpad-server-setup.sh # buildkit
CMD ["/bin/sh" "-c" "vsftpd /etc/vsftpd.conf & python3 -m http.server 8080"]

Labels

Key Value
org.opencontainers.image.ref.name ubuntu
org.opencontainers.image.version 22.04
Details
Container
2024-11-15 22:17:31 -07:00
3
OCI / Docker
linux/amd64
159 MiB
Versions (1) View all
latest 2024-11-15