Re: Docker is sunsetting Free Team organizations
- Posted by ghaberek (admin) Mar 16, 2023
- 977 views
axtens_bruce said...
I don't know what effect it will have on what I'm doing. I've simply taken the Dockerfile file and modified it for use in the Exercism enviroment, viz
FROM ubuntu
LABEL maintainer="Greg Haberek <ghaberek@gmail.com>"
ADD euphoria-4.1.0-Linux-x64-57179171dbed.tar.gz /usr/local/
ENV PATH=/usr/local/euphoria-4.1.0-Linux-x64/bin:$PATH
RUN apt-get update && \
apt-get install jq coreutils -y && \
apt-get purge --auto-remove -y && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
WORKDIR /opt/test-runner
COPY . .
ENTRYPOINT ["/opt/test-runner/bin/run.sh"]
That works and avoids the problem of the OpenEuphoria organization going away. But in the long term you could make that FROM openeuphoria/euphoria:latest and jump right to WORKDIR, etc.
-Greg

