##// END OF EJS Templates
update rc/models.py to last version:...
update rc/models.py to last version: - monitor channel - cgs_status

File last commit:

r347:46080b395512
r418:d19764ba5024 ver_3Julio
Show More
Dockerfile
20 lines | 461 B | text/x-dockerfile-config | DockerLexer
FROM python:3.7-slim
# set working directory
RUN mkdir /radarsys
WORKDIR /radarsys
# Install python dependences
ADD requirements.txt ./requirements.txt
RUN apt-get clean && apt-get update && apt-get install -y --no-install-recommends \
gcc \
g++ \
&& pip install -v --timeout 120 -r requirements.txt --no-cache-dir \
&& apt-get purge -y --auto-remove gcc g++\
&& rm -rf /var/lib/apt/lists/*
# Copy the main application.
COPY . ./
EXPOSE 8000