1
0
mirror of https://github.com/SquidDev-CC/CC-Tweaked synced 2025-08-26 07:22:18 +00:00
CC-Tweaked/.gitpod.Dockerfile
Jonathan Coates 2279f5044d
Nuke treasure disks
They're datapacks now. Right???
2021-06-09 09:19:21 +01:00

20 lines
619 B
Docker

FROM gitpod/workspace-base
USER gitpod
# Install custom tools, runtime, etc. using apt-get
# For example, the command below would install "bastet" - a command line tetris clone:
#
# RUN sudo apt-get -q update && \
# sudo apt-get install -yq bastet && \
# sudo rm -rf /var/lib/apt/lists/*
#
# More information: https://www.gitpod.io/docs/config-docker/
# Install Java 8 and 16
RUN sudo apt-get -q update && \
sudo apt install -yq openjdk-8-jdk openjdk-16-jdk
# This is so that you can use java 8 until such a time as you switch to java 16
RUN sudo update-java-alternatives --set java-1.8.0-openjdk-amd64