Skip to content

Commit

Permalink
Merge branch 'main' into issue31_33
Browse files Browse the repository at this point in the history
  • Loading branch information
roelderickx committed Sep 10, 2023
2 parents a70e3c4 + a008ffc commit c5c7e28
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 2 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/deploy.yml
Expand Up @@ -2,8 +2,6 @@ name: deploy

on:
push:
branches:
- main
tags:
- '*'

Expand Down
23 changes: 23 additions & 0 deletions test/Dockerfile
@@ -0,0 +1,23 @@
FROM amd64/ubuntu:20.04

WORKDIR /app

RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get install -y \
libxml2-utils \
python-is-python3 \
pip && \
unlink /etc/localtime && \
ln -s /usr/share/zoneinfo/Europe/Brussels /etc/localtime

RUN apt-get install -y \
gdal-bin \
libgdal-dev \
python3-gdal \
libprotobuf-dev \
protobuf-compiler \
osmctools

RUN pip install cram lxml
RUN pip install --upgrade protobuf

0 comments on commit c5c7e28

Please sign in to comment.