Skip to content

Instantly share code, notes, and snippets.

View chriskl's full-sized avatar

Chris Kings-Lynne chriskl

View GitHub Profile
@chriskl
chriskl / Dockerfile
Created April 30, 2021 01:21
Meltano Dockerfile
ARG MELTANO_IMAGE=meltano/meltano:latest
FROM $MELTANO_IMAGE
WORKDIR /project
# Install chamber
RUN curl -s https://packagecloud.io/install/repositories/segment/chamber/script.deb.sh | /bin/bash \
&& apt-get install -y chamber \
&& apt-get clean