You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have this running on Proxmox now but was erroring out trying to COPY pyproject.toml & peotry.lock until the line was ended with a forward slash(as it's shown with said comment bellow).
I can barely copy/paste half the time, definitely no expert, but thought I'd share.
Dockerfile:
RUN apk add --no-cache build-base libffi-dev
RUN pip install poetry
WORKDIR /mnt
COPY pyproject.toml poetry.lock ./ # Ensure the destination ends with a forward slash
RUN poetry install --no-root --only main
COPY . .
ENTRYPOINT ["poetry", "run", "python", "discollama.py"]
The text was updated successfully, but these errors were encountered:
I have this running on Proxmox now but was erroring out trying to COPY pyproject.toml & peotry.lock until the line was ended with a forward slash(as it's shown with said comment bellow).
I can barely copy/paste half the time, definitely no expert, but thought I'd share.
Dockerfile:
The text was updated successfully, but these errors were encountered: