24 lines
546 B
Docker
24 lines
546 B
Docker
FROM harbor.ervine.dev/public/alpinev3.13
|
|
|
|
LABEL maintainer="Jonathan Ervine <docker@ervine.org>"
|
|
|
|
# Install updates
|
|
ENV LANG='en_US.UTF-8' \
|
|
LANGUAGE='en_US.UTF-8' \
|
|
TERM='xterm' \
|
|
VERSION='0.1' \
|
|
TAUT_USER='filemon' \
|
|
TAUT_UID=1027 \
|
|
TAUT_GID=1027
|
|
|
|
RUN echo http://dl-4.alpinelinux.org/alpine/edge/testing >> /etc/apk/repositories && \
|
|
apk update && \
|
|
apk -U upgrade --ignore alpine-baselayout && \
|
|
apk -U add python3 git py-setuptools inotify-tools
|
|
|
|
#
|
|
# Add named init script.
|
|
#
|
|
|
|
CMD [ "/usr/bin/sleep", "3600" ]
|