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