ryans
ryans
RRailway
Created by ryans on 4/25/2024 in #✋|help
How to use the CLI tool to restart the current deployment
How to use the CLI to restart the current deployment, rather than redploying everything with "railway up"?
4 replies
RRailway
Created by ryans on 12/19/2023 in #✋|help
Error: Docker build failed
My build is now failing. It used to work. But it fails after redeploying. How to fix it? https://github.com/ryanshrott/tenant #14 [stage-0 10/16] RUN apt update #14 0.371 apt: /lib/x86_64-linux-gnu/libc.so.6: version GLIBC_2.36' not found (required by /nix/store/xpxln7rqi3pq4m0xpnawhxb2gs0mn1s0-gcc-12.3.0-lib/lib/libstdc++.so.6) #14 ERROR: process "/bin/bash -ol pipefail -c apt update" did not complete successfully: exit code: 1 ----- > [stage-0 10/16] RUN apt update: 0.371 apt: /lib/x86_64-linux-gnu/libc.so.6: version GLIBC_2.36' not found (required by /nix/store/xpxln7rqi3pq4m0xpnawhxb2gs0mn1s0-gcc-12.3.0-lib/lib/libstdc++.so.6) ----- Dockerfile:28 ------------------- 26 | # poppler phase 27 | COPY . /app/. 28 | >>> RUN apt update 29 | RUN apt install -y poppler-utils 30 | ------------------- ERROR: failed to solve: process "/bin/bash -ol pipefail -c apt update" did not complete successfully: exit code: 1 Error: Docker build failed
6 replies
RRailway
Created by ryans on 10/10/2023 in #✋|help
Playwright install failing w nixpacks file
Please help! Playwright is suddenly failing to install! I am using the flask template. ╔══════════════════════════════ Nixpacks v1.17.0 ══════════════════════════════╗ ║ setup │ python310, gcc ║ ║──────────────────────────────────────────────────────────────────────────────║ ║ install │ python -m venv --copies /opt/venv && . /opt/venv/bin/activate ║ ║ │ && pip install -r requirements.txt ║ ║──────────────────────────────────────────────────────────────────────────────║ ║ build │ playwright install ║ ║ │ playwright install-deps ║ ║──────────────────────────────────────────────────────────────────────────────║ ║ start │ gunicorn main:app ║ #11 [stage-0 7/11] COPY . /app/. #12 [stage-0 8/11] RUN playwright install #12 1.715 /opt/venv/lib/python3.10/site-packages/playwright/driver/node: /lib/x86_64-linux-gnu/libc.so.6: version GLIBC_2.36' not found (required by /nix/store/xpxln7rqi3pq4m0xpnawhxb2gs0mn1s0-gcc-12.3.0-lib/lib/libstdc++.so.6) #12 ERROR: process "/bin/bash -ol pipefail -c playwright install" did not complete successfully: exit code: 1 ----- > [stage-0 8/11] RUN playwright install: 1.715 /opt/venv/lib/python3.10/site-packages/playwright/driver/node: /lib/x86_64-linux-gnu/libc.so.6: version GLIBC_2.36' not found (required by /nix/store/xpxln7rqi3pq4m0xpnawhxb2gs0mn1s0-gcc-12.3.0-lib/lib/libstdc++.so.6) ----- Dockerfile:24 ------------------- 22 | # build phase 23 | COPY . /app/. 24 | >>> RUN playwright install 25 | RUN playwright install-deps 26 | ------------------- ERROR: failed to solve: process "/bin/bash -ol pipefail -c playwright install" did not complete successfully: exit code: 1 Error: Docker build failed
17 replies
RRailway
Created by ryans on 8/5/2023 in #✋|help
playwright in a flask app
How can I install playwright in a flask app? On my local, I do playwright install after I install it with pip3. Please help. Thanks
22 replies