10 lines
123 B
Docker
10 lines
123 B
Docker
FROM nginx:latest
|
|
|
|
RUN apt-get update
|
|
|
|
RUN apt-get install -y \
|
|
git \
|
|
brotli
|
|
|
|
RUN rm -rf /var/lib/apt/lists/*
|