90DaysOfDevOps/Days/Containers/Dockerfile

6 lines
189 B
Docker
Raw Normal View History

2022-02-14 03:13:44 +07:00
# Use the official Ubuntu 18.04 as base
FROM ubuntu:18.04
# Install nginx and curl
RUN apt-get update && apt-get upgrade -y
RUN apt-get install -y nginx curl
RUN rm -rf /var/lib/apt/lists/*