mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2025-04-30 15:46:10 +02:00
9 lines
141 B
Docker
9 lines
141 B
Docker
FROM alpine:latest
|
|
LABEL maintainer "Jessie Frazelle <jess@linux.com>"
|
|
|
|
RUN apk add --no-cache \
|
|
aspell \
|
|
aspell-en
|
|
|
|
ENTRYPOINT ["aspell"]
|