Firefox WebExtension that lets you share the current tab to frontpage.fyi with minimal effort.
1FROM fedora:40
2
3# Install system packages required for Rust builds and Node-based Codex CLI
4RUN dnf install -y \
5 curl \
6 ca-certificates \
7 make \
8 gcc \
9 pkg-config \
10 openssl-devel \
11 git \
12 nodejs \
13 npm \
14 && dnf clean all
15
16# Install OpenAI Codex CLI from npm registry
17RUN npm install -g @openai/codex
18
19# Create a non-root user to run the CLI by default
20RUN useradd --create-home --shell /bin/bash app
21USER app
22WORKDIR /home/app
23
24CMD ["codex", "--help"]