Files
codex/Dockerfile
Tord-Vincent Heggland 6aeea6fe40 toinit
2026-04-14 16:51:50 +02:00

11 lines
215 B
Docker

FROM node:22-slim
RUN apt-get update && apt-get install -y ca-certificates && rm -rf /var/lib/apt/lists/*
RUN useradd -ms /bin/bash dev
RUN npm install -g @openai/codex
USER dev
WORKDIR /workspace
CMD ["bash"]