File: Dockerfile

package info (click to toggle)
socksio 1.0.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 260 kB
  • sloc: python: 1,117; makefile: 12; sh: 12
file content (8 lines) | stat: -rw-r--r-- 255 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
FROM ubuntu:bionic
# Add a fake user for Dante to pick up credentials for
RUN useradd -s /sbin/nologin socksio
RUN echo 'socksio:socksio' | chpasswd
RUN apt-get update && apt-get install -y dante-server
COPY danted.conf /etc/
EXPOSE 1080
CMD [ "danted" ]