7 lines
80 B
Docker
7 lines
80 B
Docker
FROM alpine:3.20
|
|
|
|
RUN apk add --no-cache \
|
|
nginx &&\
|
|
rm -rf /var/cache/apk/*
|
|
|