-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "Merge pull request #429 from HSLdevcom/fix-otp-data-tools-ima…
- Loading branch information
1 parent
dd90fa8
commit 0a9b4a2
Showing
7 changed files
with
20 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,9 @@ | ||
FROM opentransitsoftwarefoundation/onebusaway-gtfs-transformer-cli:4.4.0 | ||
FROM eclipse-temurin:21-jre | ||
LABEL maintainer="Digitransit (digitransit.fi)" \ | ||
version="1.1" \ | ||
version="1.0" \ | ||
repo="https://github.com/HSLdevcom/OpenTripPlanner-data-container" | ||
|
||
RUN apt-get update && apt-get -y install git python3 python3-pip python3-venv | ||
RUN rm -rf /var/lib/apt/lists/* | ||
RUN python3 -m venv python-venv && python-venv/bin/pip install future grequests numpy | ||
RUN git clone -b v3 --single-branch https://github.com/HSLdevcom/OTPQA.git | ||
|
||
RUN mkdir /data | ||
ADD onebusaway-gtfs-transformer-cli.jar / | ||
ADD build-otp-data-tools.sh ${WORK} | ||
VOLUME /data | ||
RUN ./build-otp-data-tools.sh && rm build-otp-data-tools.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,6 @@ | ||
# OpenTripPlanner-data-tools | ||
[![Build](https://github.com/hsldevcom/OpenTripPlanner-data-container/workflows/Process%20master%20push%20or%20pr/badge.svg?branch=master)](https://github.com/HSLdevcom/OpenTripPlanner-data-container/actions) | ||
|
||
## About: | ||
- This docker container includes all the needed tools for preparing gtfs data ready for consumption. | ||
- It uses opentransitsoftwarefoundation/onebusaway-gtfs-transformer-cli as the base image. | ||
- Useful links: | ||
- https://github.com/OneBusAway/onebusaway-gtfs-modules | ||
- Documentation can be found in the `docs` folder | ||
- https://registry.hub.docker.com/r/opentransitsoftwarefoundation/onebusaway-gtfs-transformer-cli | ||
1. This docker container includes all the needed tools for preparing gtfs data | ||
ready for consumption. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#!/usr/bin/env bash | ||
set -e | ||
|
||
apt-get update && apt-get -y install git python3 python3-pip python3-venv | ||
rm -rf /var/lib/apt/lists/* | ||
python3 -m venv python-venv && python-venv/bin/pip install future grequests numpy | ||
git clone -b v3 --single-branch https://github.com/HSLdevcom/OTPQA.git |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters