Updated Legacy ENV Path (#1008)

* Minor Change

* fix: pin python version + fix font path

* More recent Python version

---------

Co-authored-by: tessier <tessier@luxeys.com>
pull/984/head
Abhishek Jadhav 10 months ago committed by GitHub
parent 7029f48322
commit 13c0a9c9f9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,5 +1,5 @@
# use latest python 3 alpine image. # use latest python alpine image.
FROM python:3-alpine FROM python:3.12.7-alpine3.20
# install system dependencies. # install system dependencies.
RUN apk update && apk add --no-cache \ RUN apk update && apk add --no-cache \
@ -9,14 +9,14 @@ RUN apk update && apk add --no-cache \
RUN go install github.com/mingrammer/round@latest RUN go install github.com/mingrammer/round@latest
# install fonts # install fonts
RUN curl -O https://noto-website.storage.googleapis.com/pkgs/NotoSansCJKjp-hinted.zip \ RUN curl -O https://noto-website-2.storage.googleapis.com/pkgs/NotoSansCJKjp-hinted.zip \
&& mkdir -p /usr/share/fonts/NotoSansCJKjp \ && mkdir -p /usr/share/fonts/NotoSansCJKjp \
&& unzip NotoSansCJKjp-hinted.zip -d /usr/share/fonts/NotoSansCJKjp/ \ && unzip NotoSansCJKjp-hinted.zip -d /usr/share/fonts/NotoSansCJKjp/ \
&& rm NotoSansCJKjp-hinted.zip \ && rm NotoSansCJKjp-hinted.zip \
&& fc-cache -fv && fc-cache -fv
# add go bin to path. # add go bin to path.
ENV PATH "$PATH:/root/go/bin" ENV PATH="$PATH:/root/go/bin"
# project directory. # project directory.
WORKDIR /usr/src/diagrams WORKDIR /usr/src/diagrams

Loading…
Cancel
Save