1
0
mirror of https://github.com/dswd/vpncloud.git synced 2025-01-12 07:11:05 +00:00

14 lines
477 B
Docker
Raw Normal View History

2021-02-16 22:41:14 +01:00
FROM ubuntu
2021-04-06 12:28:31 +02:00
RUN apt-get update && apt-get install -y asciinema locales bash iputils-ping
RUN sed -i '/en_US.UTF-8/s/^# //g' /etc/locale.gen && locale-gen
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US:en
ENV LC_ALL en_US.UTF-8
2021-02-16 22:41:14 +01:00
RUN mkdir /root/.asciinema
RUN mkdir /etc/vpncloud
WORKDIR /data
ADD config /root/.asciinema/config
2021-04-06 12:28:31 +02:00
RUN echo 'PS1="\[\e[00;34m\]\[\e[01;31m\]\u\[\e[00;01;34m\]@\[\e[00;34m\]node\[\e[01;31m\]:\[\e[00;34m\]\w\[\e[01;31m\]> \[\e[00m\]"' >> /root/.bashrc