Skip to content
Snippets Groups Projects

added initial docker setup for running NGAS locally

Merged Andrew Kapuscinski requested to merge WS-533-local-ngas-setup into main
3 unresolved threads
Files
6
+ 9
0
FROM postgres:12.6-alpine
ARG NGAS_VERSION=11.0.2
WORKDIR /repos
RUN apk add git && \
git clone --depth 1 --branch "v${NGAS_VERSION}" https://github.com/ICRAR/ngas.git && \
cp ngas/src/ngamsCore/ngamsSql/ngamsCreateTables-PostgreSQL.sql /docker-entrypoint-initdb.d/ngamsCreateTables-PostgreSQL.sql
Loading