oxen-core/contrib/docker/Dockerfile.oxen-ubuntu
Chris Buccella b787600579 Add oxend Dockerfile and build script
Add a Dockerfile and build script for:
  - an Ubuntu base container (Ubuntu 20.04 + oxen repo)
  - an oxend container, using the base container
2021-03-29 00:18:21 +00:00

7 lines
281 B
Docker

FROM ubuntu:20.04
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update && apt-get -y install apt-utils ca-certificates
COPY oxen-deb-key.gpg /etc/apt/trusted.gpg.d/oxen.gpg
RUN echo "deb https://deb.oxen.io focal main" > /etc/apt/sources.list.d/oxen.list && \
apt-get update