Files
zeronsd/Dockerfile.ubuntu
Erik Hollensbe a4360d46a4 Update packaging routines for ubuntu's libssl changes
This fixes the make tasks and adds a new Dockerfile to build the package
properly for ubuntu 22.04 (and derivatives) and up. The packages require
libssl3.

Signed-off-by: Erik Hollensbe <git@hollensbe.org>
2022-04-26 00:59:06 -07:00

11 lines
372 B
Docker

# vim: ft=dockerfile
FROM ubuntu:jammy
# this is pretty broken, but is the current state of things I guess?
RUN apt-get update -qq && apt-get install curl build-essential pkg-config libssl3 libssl-dev -y
RUN mkdir -p /root
ENV HOME=/root
RUN curl -sSL sh.rustup.rs >/tmp/rustup.sh && bash /tmp/rustup.sh -y
ENV PATH=${PATH}:${HOME}/.cargo/bin
RUN cargo install cargo-deb