10
10
# REDCAP_URL_BASE default should be set to https://redcap.vanderbilt.edu/api/
11
11
# SCHEDULE_RUN_TIME default should be set to 00:00
12
12
# need to mount backup dir to POSTGRES_DUMP_PATH
13
- FROM ubuntu:22 .04 AS transform
13
+ FROM ubuntu:20 .04 AS transform
14
14
15
15
RUN apt-get update && apt-get install -y wget openjdk-8-jdk gnupg
16
16
RUN apt-get update && apt-get install curl -y
@@ -19,11 +19,11 @@ RUN echo "deb https://repo.scala-sbt.org/scalasbt/debian /" | tee -a /etc/apt/so
19
19
RUN curl -sL "https://keyserver.ubuntu.com/pks/lookup?op=get&search=0x2EE0EA64E40A89B84B2DF73499E82A75642AC823" | apt-key add
20
20
# RUN apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 2EE0EA64E40A89B84B2DF73499E82A75642AC823
21
21
RUN apt-get update && apt-get install -y sbt
22
- COPY ./ map-pipeline ./ map-pipeline
22
+ COPY [ " map-pipeline" , " map-pipeline" ]
23
23
WORKDIR map-pipeline
24
24
RUN sbt assembly
25
25
26
- FROM ubuntu:22 .04
26
+ FROM ubuntu:20 .04
27
27
28
28
RUN apt-get update && apt-get install -y wget curl
29
29
@@ -37,11 +37,11 @@ RUN mkdir data
37
37
38
38
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y wget gnupg git tzdata
39
39
40
- RUN echo "deb http://apt.postgresql.org/pub/repos/apt/ jammy -pgdg main" | tee -a /etc/apt/sources.list.d/pgdg.list
40
+ RUN echo "deb http://apt.postgresql.org/pub/repos/apt/ bionic -pgdg main" | tee -a /etc/apt/sources.list.d/pgdg.list
41
41
42
42
RUN wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add -
43
43
44
- RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y python3-pip wget openjdk-8-jdk postgresql-client-15 libmemcached-dev
44
+ RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y python3-pip wget openjdk-8-jdk postgresql-client-11 libmemcached-dev
45
45
46
46
47
47
RUN apt-get install pkg-config libicu-dev -y
0 commit comments