Skip to content

Instantly share code, notes, and snippets.

@sayrer
Created March 26, 2021 19:54
Show Gist options
  • Save sayrer/385b133163e49ad212168a216b18f13b to your computer and use it in GitHub Desktop.
Save sayrer/385b133163e49ad212168a216b18f13b to your computer and use it in GitHub Desktop.
Dockerfile that will work for building cargo-raze
FROM ubuntu:focal
RUN DEBIAN_FRONTEND=noninteractive apt-get update
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y apt-utils
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y ca-certificates
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y gcc
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y g++
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y autotools-dev
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y automake
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y make
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y pkg-config
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y texinfo
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y zlib1g
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y zlib1g-dev
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment