forked from confluentinc/training-developer-src
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
16 lines (13 loc) · 686 Bytes
/
Dockerfile
File metadata and controls
16 lines (13 loc) · 686 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
FROM gitpod/workspace-full:latest
# Install Confluent Platform 6.2.2
RUN sudo wget --quiet -P /home/gitpod/ http://packages.confluent.io/archive/6.2/confluent-6.2.2.tar.gz \
&& sudo tar xzf /home/gitpod/confluent-6.2.2.tar.gz \
&& sudo rm /home/gitpod/confluent-6.2.2.tar.gz
# Setup PATH env variable
ENV PATH="/home/gitpod/confluent-6.2.2/bin:$PATH"
# # Install Tailscale
# USER root
# RUN curl -fsSL https://pkgs.tailscale.com/stable/ubuntu/focal.gpg | sudo apt-key add - \
# && curl -fsSL https://pkgs.tailscale.com/stable/ubuntu/focal.list | sudo tee /etc/apt/sources.list.d/tailscale.list \
# && apt-get update \
# && apt-get install -y tailscale