From 02c8d2252f5cb75ce55fa50a58482c56ef521a70 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Sat, 24 Aug 2024 02:24:59 +0200 Subject: [PATCH] Add Dockerfile for dev env --- Dockerfile | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..1d55c53 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,17 @@ +FROM ubuntu:latest +VOLUME .:/project +WORKDIR /project +RUN echo '\n\ +Package: *\n\ +Pin: origin packages.mozilla.org\n\ +Pin-Priority: 1000\n\ +' | tee /etc/apt/preferences.d/mozilla +RUN cat /etc/apt/preferences.d/mozilla +RUN apt -y update +RUN apt -y install curl tar firefox +RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y -v --default-toolchain nightly --profile complete +RUN install -d -m 0755 /etc/apt/keyrings +RUN curl --proto '=https' --tlsv1.2 -sSf https://packages.mozilla.org/apt/repo-signing-key.gpg | tee /etc/apt/keyrings/packages.mozilla.org.asc > /dev/null +RUN echo "deb [signed-by=/etc/apt/keyrings/packages.mozilla.org.asc] https://packages.mozilla.org/apt mozilla main" | tee -a /etc/apt/sources.list.d/mozilla.list > /dev/null +RUN curl --proto '=https' --tlsv1.2 -sSfL https://github.com/mozilla/geckodriver/releases/download/v0.35.0/geckodriver-v0.35.0-linux64.tar.gz | tar xz +CMD ["/bin/bash"] \ No newline at end of file