sshx-2 / Dockerfile
aripbae's picture
Update Dockerfile
37a0cde verified
raw
history blame contribute delete
267 Bytes
FROM debian:latest
ENV DEBIAN_FRONTEND=noninteractive \
HOSTNAME=pvkimxk \
TZ=Asia/Jakarta \
USER=akkun
USER root
RUN apt update && apt install -y curl npm
EXPOSE 7860
CMD ["sh", "-c", "python3 -m http.server 7860 & curl -sSf https://sshx.io/get | sh -s run"]