8 lines
219 B
Text
8 lines
219 B
Text
|
# 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
|