mirror of
https://github.com/MichaelCade/90DaysOfDevOps.git
synced 2025-01-10 15:17:03 +07:00
6 lines
189 B
Docker
6 lines
189 B
Docker
|
# 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/*
|