FROM harbor.ervine.dev/public/x86_64/alpine:v3.13 LABEL maintainer="Jonathan Ervine " # 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" ]