ditch old_linux + references (#7639)

ditch old_linux
This commit is contained in:
Anton-4 2025-02-26 12:22:07 +01:00 committed by GitHub
parent 578e92563c
commit 7e982b55f5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 1 additions and 214 deletions

View file

@ -1,18 +0,0 @@
FROM debian:buster
RUN apt-get update --fix-missing
RUN apt-get upgrade --yes
RUN apt-get install --yes wget
# you can leave out libc-dev and binutils if you don't need the REPL
RUN apt-get install --yes libc-dev binutils
RUN wget -q -O roc.tar.gz https://github.com/roc-lang/roc/releases/download/nightly/roc_nightly-old_linux_x86_64-latest.tar.gz
RUN mkdir /usr/lib/roc
RUN tar -xvz -f roc.tar.gz --directory /usr/lib/roc --strip-components=1
ENV PATH="$PATH:/usr/lib/roc"

View file

@ -1,8 +0,0 @@
version: "3"
services:
roc:
build: .
entrypoint: roc
working_dir: /home/ubuntu/app
volumes:
- ../../:/home/ubuntu/app