feat: automatic image version

This commit is contained in:
Swann
2020-10-03 00:26:44 +02:00
parent 28a265be68
commit 83aa9b57ec
3 changed files with 16 additions and 17 deletions

View File

@ -1,14 +1,15 @@
# Download base image debian jessie
FROM python:slim
ARG replication_version=0.0.21a15
ARG version=0.1.0
# Infos
LABEL maintainer="Swann Martinez"
LABEL version="0.1.0"
LABEL version=$version
LABEL description="Blender multi-user addon \
dedicated server image."
ARG version=0.0.21a15
# Argument
ENV password='admin'
ENV port=5555
@ -17,7 +18,7 @@ ENV log_level=INFO
ENV log_file="multiuser_server.log"
#Install replication
RUN pip install replication==$version
RUN pip install replication==$replication_version
# Run the server with parameters
CMD replication.serve -pwd ${password} -p ${port} -t ${timeout} -l ${log_level} -lf ${log_file}