mirror of
https://github.com/tsl0922/ttyd.git
synced 2026-01-22 10:44:22 +01:00
* Dockerfile-alpine: update Alpine to v3.9 ttyd in Alpine v3.6 repository is v1.3.2, in Alpine v3.9, it's v1.4.2 * Dockerfile-alpine: simplify package installation Use `--no-cache` to avoid the need to use `--update` and remove `/var/cache/apk/*` manually
14 lines
226 B
Plaintext
14 lines
226 B
Plaintext
FROM alpine:3.9
|
|
LABEL maintainer "Shuanglei Tao - tsl0922@gmail.com" \
|
|
maintainer "Damien Duportal - damien.duportal@gmail.com"
|
|
|
|
RUN apk add --no-cache \
|
|
bash \
|
|
ttyd
|
|
|
|
EXPOSE 7681
|
|
|
|
ENTRYPOINT ["ttyd"]
|
|
|
|
CMD ["bash"]
|