fix that damn sign!!!
This commit is contained in:
@@ -55,17 +55,15 @@ jobs:
|
|||||||
- name: Build ARM Executable
|
- name: Build ARM Executable
|
||||||
run: |
|
run: |
|
||||||
docker buildx build --platform linux/arm64/v8 -t arm-builder --load --file - . <<EOF
|
docker buildx build --platform linux/arm64/v8 -t arm-builder --load --file - . <<EOF
|
||||||
FROM arm64v8/python:3.12-slim-trixie
|
FROM arm64v8/python:3.12-slim-trixie
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
COPY requirements.txt /app/requirements.txt
|
COPY requirements.txt /app/requirements.txt
|
||||||
COPY app /app/app
|
COPY app /app/app
|
||||||
ENV PIP_ROOT_USER_ACTION=ignore
|
ENV PIP_ROOT_USER_ACTION=ignore
|
||||||
RUN apt-get update && apt-get install -y --no-install-recommends \
|
RUN apt-get update && apt-get install -y --no-install-recommends binutils
|
||||||
binutils \
|
RUN pip install -r /app/requirements.txt
|
||||||
&& pip install -r /app/requirements.txt \
|
RUN cd /app/app && pyinstaller --onefile --add-data "ui:ui" wolServer.py
|
||||||
&& cd /app/app \
|
EOF
|
||||||
&& pyinstaller --onefile --add-data "ui:ui" wolServer.py
|
|
||||||
EOF
|
|
||||||
|
|
||||||
- name: Create Dist Directory
|
- name: Create Dist Directory
|
||||||
run: mkdir -p app/dist
|
run: mkdir -p app/dist
|
||||||
|
|||||||
Reference in New Issue
Block a user