Skip to content

Commit 5257b21

Browse files
committed
- Ignore news when they start with a comment #
- Build the image in place without downloading the entire thing from git - connect the buildfile with the docker-compose.yml - silence some old news
1 parent 7ccda79 commit 5257b21

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

Docker/resource_server/Dockerfile

+8-10
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,10 @@ FROM python:3
33

44
# Clone the repository from GitHub
55
RUN apt-get update && \
6-
apt-get install -y git host nano && \
7-
git clone https://github.com/gilestrolab/ethoscope.git /opt/ethoscope && \
8-
cd /opt/ethoscope && \
9-
git checkout dev && \
10-
ln -s /opt/ethoscope/scripts/resource_server /opt/ethoscope_resources
6+
apt-get install -y git host nano
117

12-
# Change to the script's directory
13-
# It is reccomended to mount this folder locally when running the container
14-
WORKDIR /opt/ethoscope_resources
8+
RUN mkdir -p /opt/ethoscope_resources
9+
COPY ./pa_server.py ./index_template.html /opt/ethoscope_resources/
1510

1611
# Install any needed packages specified in requirements.txt
1712
# Uncomment the following line if there is a requirements.txt in the repository
@@ -21,8 +16,11 @@ RUN pip install --no-cache-dir bottle
2116
# Make port 8080 available to the world outside this container
2217
EXPOSE 8080
2318

19+
# Change to the script's directory
20+
# It is reccomended to mount this folder locally when running the container
21+
WORKDIR /opt/ethoscope_resources
22+
2423
# Run pa_server.py when the container launches
2524
CMD ["python", "pa_server.py", "--debug", "--port", "8080", "--log", "/opt/ethoscope_resources/contents/", "--static", "/opt/ethoscope_resources"]
2625

27-
28-
# docker build -t ethoscope-resources . --no-cache
26+
# docker build -t ethoscope-resources . --no-cache
+3-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
2020-06-25;We now have a notification service
2-
2020-06-26;Please be aware that there are issues with the raspberry PI 3 and the PINoIR camera version 2. Follow the github issue #97 for updates.
3-
2020-07-02;The new stable branch is now master. Starting from yesterday's image, all your ethoscopes and node will migrate from python3.7 to master for the future. Switch to dev if you want to experience the new features as we use them in the gilestro lab.
1+
#2020-06-25;We now have a notification service
2+
#2020-06-26;Please be aware that there are issues with the raspberry PI 3 and the PINoIR camera version 2. Follow the github issue #97 for updates.
3+
#2020-07-02;The new stable branch is now master. Starting from yesterday's image, all your ethoscopes and node will migrate from python3.7 to master for the future. Switch to dev if you want to experience the new features as we use them in the gilestro lab.

Docker/resource_server/docker-compose.yml

+2
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,14 @@ version: '3'
22

33
services:
44
ethoscope-resources:
5+
build: .
56
image: ethoscope-resources
67
container_name: ethoscope-resources
78
restart: always
89
expose:
910
- 8080
1011
volumes:
12+
# - ./:/opt/ethoscope_resources
1113
- ./contents:/opt/ethoscope_resources/contents
1214
environment:
1315
- VIRTUAL_HOST=ethoscope-resources.lab.gilest.ro

Docker/resource_server/pa_server.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
news = []
3030
with open(news_file, "r") as nf:
3131
for line in nf.readlines():
32-
if ";" in line:
32+
if not line.startswith("#") and ";" in line:
3333
news.append ( {"content" : line.split(";")[1], "date": line.split(";")[0]} )
3434

3535
@app.hook('after_request')

0 commit comments

Comments
 (0)