1
0
mirror of https://github.com/SquidDev-CC/CC-Tweaked synced 2025-08-26 07:22:18 +00:00
CC-Tweaked/.gitpod.Dockerfile
2021-10-06 18:42:47 +03:00

20 lines
620 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.16.0-openjdk-amd64