mirror of
https://github.com/zeldaret/oot.git
synced 2025-02-09 05:44:26 +00:00
Dockerfile Update (#2372)
* removing due to deprecation * addressing docker build console issues, updating to latest LTS ubuntu, addressing Ubuntu + Python .venv requirements, standardizing environment * Update Dockerfile --------- Co-authored-by: BuildTools <unconfigured@null.spigotmc.org> Co-authored-by: Parker <parker@runforyour.money>
This commit is contained in:
parent
582f040789
commit
4873788e2d
1 changed files with 3 additions and 7 deletions
10
Dockerfile
10
Dockerfile
|
@ -1,5 +1,7 @@
|
|||
FROM ubuntu:22.04 as build
|
||||
FROM ubuntu:24.04 AS build
|
||||
|
||||
ENV TZ=UTC
|
||||
ENV LANG=C.UTF-8
|
||||
|
||||
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone && \
|
||||
apt-get update && \
|
||||
|
@ -19,14 +21,8 @@ RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone &
|
|||
apt-get clean && \
|
||||
rm -rf /var/lib/apt/lists/*
|
||||
|
||||
RUN python3 -m pip install --user colorama ansiwrap attrs watchdog python-Levenshtein "mapfile-parser>=1.2.1,<2.0.0" "rabbitizer>=1.0.0,<2.0.0"
|
||||
RUN python3 -m pip install --upgrade attrs pycparser
|
||||
|
||||
ENV LANG C.UTF-8
|
||||
|
||||
RUN mkdir /oot
|
||||
WORKDIR /oot
|
||||
|
||||
RUN git config --global --add safe.directory /oot
|
||||
|
||||
CMD ["/bin/sh", "-c", \
|
||||
|
|
Loading…
Add table
Reference in a new issue