7 lines
219 B
Docker
7 lines
219 B
Docker
# Use the official Docker Hub Ubuntu 18.04 base image
|
|
FROM ubuntu:18.04
|
|
|
|
# Update the base image
|
|
RUN apt-get update && apt-get -y upgrade && apt-get -y dist-upgrade
|
|
|
|
# Setup install environment and DFDewey dependencies
|