We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0603723 commit 569dfd9Copy full SHA for 569dfd9
1 file changed
Dockerfile
@@ -2,16 +2,6 @@ FROM python:3.11
2
WORKDIR /codemodder
3
COPY . .
4
5
-# Install Rust (temporary workaround for libcst dependency)
6
-RUN apt-get update && \
7
- apt-get install -y curl && \
8
- curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y && \
9
- apt-get remove -y curl && \
10
- apt-get autoremove -y && \
11
- apt-get clean && \
12
- rm -rf /var/lib/apt/lists/*
13
-ENV PATH="/root/.cargo/bin:${PATH}"
14
-
15
RUN pip install .
16
17
ENTRYPOINT ["codemodder"]
0 commit comments