x86_64-alpine-htpcmgr/Dockerfile
Jonathan Ervine 060913c6ae new file: Dockerfile
new file:   Jenkinsfile
	new file:   UTC
	new file:   start.sh
2020-07-09 22:51:25 +08:00

28 lines
635 B
Docker

# Base on latest (edge) alpine image
FROM harbor.ervine.dev/library/x86_64/alpine/alpine-3.11
MAINTAINER “Jonathan Ervine” <docker@ervine.org>
# Install updates
# Create mediaservice user
ENV LANG='en_US.UTF-8' \
LANGUAGE='en_US.UTF-8' \
TERM='xterm'
RUN echo http://dl-4.alpinelinux.org/alpine/edge/testing >> /etc/apk/repositories && \
apk update && \
apk -U upgrade && \
apk -U add \
python git py-pillow
ADD UTC /etc/localtime
RUN git clone https://github.com/Hellowlol/HTPC-Manager && \
rm -rf /var/cache/apk/*
COPY start.sh /usr/local/bin/start.sh
EXPOSE 8085
CMD [ "/usr/local/bin/start.sh" ]