Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update osm-processor docker base image for containers #344

Merged
merged 3 commits into from
Oct 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion chartpress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ charts:
repo:
git: developmentseed/osm-seed-chart
published: https://devseed.com/osm-seed-chart

images:
web:
valuesPath: web.image
Expand Down
2 changes: 1 addition & 1 deletion images/full-history/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM developmentseed/osmseed-osm-processor:v3
FROM developmentseed/osmseed-osm-processor:0.1.0-n795.h1c8d32f

VOLUME /mnt/data
COPY ./start.sh /
Expand Down
2 changes: 1 addition & 1 deletion images/planet-dump/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM developmentseed/osmseed-osm-processor:v3
FROM developmentseed/osmseed-osm-processor:0.1.0-n795.h1c8d32f

VOLUME /mnt/data
COPY ./start.sh /
Expand Down
2 changes: 1 addition & 1 deletion images/populate-apidb/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM developmentseed/osmseed-osm-processor:v3
FROM developmentseed/osmseed-osm-processor:0.1.0-n795.h1c8d32f

VOLUME /mnt/data
COPY ./start.sh /
Expand Down
16 changes: 10 additions & 6 deletions images/replication-job/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
FROM developmentseed/osmseed-osm-processor:v3
FROM developmentseed/osmseed-osm-processor:0.1.0-n795.h1c8d32f

# Install Nginx
RUN apt-get update && \
apt-get install -y nginx && \
apt-get install -y nginx python3-pip python3-venv && \
rm -rf /var/lib/apt/lists/*

RUN pip3 install boto3

RUN python3 -m venv /opt/venv
ENV PATH="/opt/venv/bin:$PATH"
RUN pip install --no-cache-dir boto3

COPY ./*.sh /
COPY monitoring.py /

WORKDIR /mnt/data
CMD /start.sh

CMD /start.sh
Loading