I honestly wish I could remember what was going on here...
This commit is contained in:
@@ -55,13 +55,13 @@ jobs:
|
|||||||
FROM python:3.11-slim-buster
|
FROM python:3.11-slim-buster
|
||||||
RUN apt-get update && apt-get install -y python3-dev
|
RUN apt-get update && apt-get install -y python3-dev
|
||||||
WORKDIR /src
|
WORKDIR /src
|
||||||
COPY . .
|
COPY requirements.txt .
|
||||||
|
COPY app .
|
||||||
RUN python -m pip install --upgrade pip \
|
RUN python -m pip install --upgrade pip \
|
||||||
&& pip install -r requirements.txt \
|
&& pip install -r requirements.txt \
|
||||||
&& cd app \
|
|
||||||
&& pyinstaller --onefile --add-data "ui:ui" wolServer.py
|
&& pyinstaller --onefile --add-data "ui:ui" wolServer.py
|
||||||
EOF
|
EOF
|
||||||
docker cp $(docker create arm-builder):/src/app/dist/wolServer app/dist/wolServer
|
docker cp $(docker create arm-builder):/src/dist/wolServer app/dist/wolServer
|
||||||
|
|
||||||
- name: Upload ARM Artifact
|
- name: Upload ARM Artifact
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v3
|
||||||
|
|||||||
Reference in New Issue
Block a user