-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDockerfile.bernese
21 lines (21 loc) · 1.16 KB
/
Dockerfile.bernese
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
FROM ubuntu:18.04
RUN apt update && \
apt install --no-install-recommends perl gfortran nano make qt4-default qt4-dev-tools \
zlib1g-dev g++ python3 python3-distutils -y && \
rm -rf /var/lib/apt/lists/*
ADD https://bootstrap.pypa.io/get-pip.py get-pip.py
RUN python3 get-pip.py --no-setuptools --no-wheel && pip install numpy
WORKDIR /home
# COPY ./GPSDATA /home/GPSDATA
COPY ./BERN52/ /home/BERN52/
COPY ./GPSTEMP /home/GPSTEMP
COPY ./GPSUSER52 /home/GPSUSER52
COPY ./RNXCMP /home/RNXCMP
RUN /bin/bash -c 'mv /home/BERN52/GPS/GEN/CONST /home/BERN52/GPS/GEN/CONST. && \
mv /home/BERN52/GPS/GEN/DATUM /home/BERN52/GPS/GEN/DATUM. && \
mv /home/BERN52/GPS/GEN/EGM2008_SMALL /home/BERN52/GPS/GEN/EGM2008_SMALL. && \
mv /home/BERN52/GPS/GEN/GPSUTC /home/BERN52/GPS/GEN/GPSUTC. && \
mv /home/BERN52/GPS/GEN/IONEX /home/BERN52/GPS/GEN/IONEX. && \
mv /home/BERN52/GPS/GEN/POLOFF /home/BERN52/GPS/GEN/POLOFF. && \
mv /home/BERN52/GPS/GEN/RECEIVER /home/BERN52/GPS/GEN/RECEIVER. && \
mv /home/BERN52/GPS/GEN/SINEX /home/BERN52/GPS/GEN/SINEX.'