diff --git a/Dockerfile b/Dockerfile index 008afdc..234b5f4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,8 @@ WORKDIR /notes RUN ln -snf /usr/share/zoneinfo/America/New_York /etc/localtime && \ echo "America/New_York" > /etc/timezone RUN apt-get update && apt-get install -y curl vim neovim zsh git \ - python3-wheel python3-pip software-properties-common + python3-wheel python3-pip software-properties-common +RUN DEBIAN_FRONTEND=noninteractive apt-get install -y cryptsetup RUN add-apt-repository ppa:deadsnakes/ppa RUN rm -f /usr/bin/python /usr/bin/pip /usr/bin/python3 RUN ln -s /usr/bin/pip3 /usr/bin/pip diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 0000000..5b93ba5 --- /dev/null +++ b/docker-compose.yaml @@ -0,0 +1,15 @@ +version: '3' + +services: + priv: + build: + context: . + image: docker.scalz.cloud/priv + container_name: priv + privileged: true + #tty: true + stdin_open: true + network_mode: none + + +