Skip to content

Commit

Permalink
Use ubuntu focal in docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
benjamincburns committed Aug 1, 2022
1 parent 4680f88 commit 0687d8f
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,17 +1,20 @@
FROM ubuntu:xenial
FROM ubuntu:focal

LABEL org.opencontainers.image.authors="benjamin.c.burns@gmail.com"

RUN apt-get update && apt-get install -y python2 python2-dev iptables dnsmasq python-pip uml-utilities net-tools build-essential && apt-get clean
RUN apt-get update && apt-get install -y python2 python2-dev iptables dnsmasq uml-utilities net-tools build-essential curl && apt-get clean

RUN curl https://bootstrap.pypa.io/pip/2.7/get-pip.py --output get-pip.py && python2 get-pip.py && rm get-pip.py

COPY docker-image-config/docker-startup.sh switchedrelay.py limiter.py requirements.txt /opt/websockproxy/
COPY docker-image-config/dnsmasq/interface docker-image-config/dnsmasq/dhcp /etc/dnsmasq.d/

WORKDIR /opt/websockproxy/

RUN python2 -m pip install -r /opt/websockproxy/requirements.txt
RUN pip2 install -r /opt/websockproxy/requirements.txt

EXPOSE 80

CMD /opt/websockproxy/docker-startup.sh


0 comments on commit 0687d8f

Please sign in to comment.