Advertisement
Guest User

Untitled

a guest
Sep 24th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. FROM alpine:latest
  2.  
  3. RUN echo "http://dl-cdn.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories
  4. RUN apk --update add --no-cache dbus \
  5. npm \
  6. vim \
  7. git \
  8. bash \
  9. tmux \
  10. openssl \
  11. xsel
  12.  
  13. RUN adduser --home /home/discord --shell /bin/bash --uid 1337 --disabled-password discord
  14. RUN npm install --global discord-term
  15.  
  16. USER discord
  17. WORKDIR /home/discord/
  18.  
  19. ENV TERM=xterm
  20.  
  21. ENTRYPOINT ["dterm"]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement