f3/Dockerfile
James Tooze 09ffcd6d1a
Docker updates
- Updates Docker base image from Ubuntu 18.04 (now EOL) to Ubuntu 22.04
  (current LTS release)
- Adds Makefile target to build Docker image. Especially useful since
  recommended Docker image `peron/f3` is out of date (as of May 2023)
- Updates README self-built Docker image usage instructions
2023-05-05 10:38:37 -07:00

22 lines
302 B
Docker

FROM ubuntu:22.04
RUN apt-get update && \
apt-get install -y --no-install-recommends \
gcc \
less \
libparted-dev \
libudev1 \
libudev-dev \
make \
udev
COPY . /f3
WORKDIR /f3
RUN make install
RUN make install-extra
CMD less README.rst