Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -32,7 +32,7 @@ ENV HOME=/home/user \
|
|
32 |
PATH=/home/user/.local/bin:${PATH}
|
33 |
WORKDIR ${HOME}/app
|
34 |
|
35 |
-
RUN wget "https://github.com/typst/typst/releases/download/v0.
|
36 |
tar -xf typst-x86_64-unknown-linux-musl.tar.xz && \
|
37 |
mv typst-x86_64-unknown-linux-musl/typst . && \
|
38 |
rm -rf typst-x86_64-unknown-linux-musl && \
|
@@ -41,7 +41,7 @@ RUN wget "https://github.com/typst/typst/releases/download/v0.12.0/typst-x86_64-
|
|
41 |
RUN curl https://pyenv.run | bash
|
42 |
ENV PATH=${HOME}/.pyenv/shims:${HOME}/.pyenv/bin:${PATH}
|
43 |
|
44 |
-
ARG PYTHON_VERSION=3.13.
|
45 |
RUN pyenv install ${PYTHON_VERSION} && \
|
46 |
pyenv global ${PYTHON_VERSION} && \
|
47 |
pyenv rehash && \
|
|
|
32 |
PATH=/home/user/.local/bin:${PATH}
|
33 |
WORKDIR ${HOME}/app
|
34 |
|
35 |
+
RUN wget "https://github.com/typst/typst/releases/download/v0.13.1/typst-x86_64-unknown-linux-musl.tar.xz" && \
|
36 |
tar -xf typst-x86_64-unknown-linux-musl.tar.xz && \
|
37 |
mv typst-x86_64-unknown-linux-musl/typst . && \
|
38 |
rm -rf typst-x86_64-unknown-linux-musl && \
|
|
|
41 |
RUN curl https://pyenv.run | bash
|
42 |
ENV PATH=${HOME}/.pyenv/shims:${HOME}/.pyenv/bin:${PATH}
|
43 |
|
44 |
+
ARG PYTHON_VERSION=3.13.3
|
45 |
RUN pyenv install ${PYTHON_VERSION} && \
|
46 |
pyenv global ${PYTHON_VERSION} && \
|
47 |
pyenv rehash && \
|