openai/openai-java
Publicmirrored from https://github.com/openai/openai-javaAvailable
.devcontainer/Dockerfile
23lines · modeblame
af9f9a27Robert Craigie2 years ago | 1 | # syntax=docker/dockerfile:1 |
| 2 | FROM debian:bookworm-slim | |
| 3 | | |
b72a7235Stainless Bot1 years ago | 4 | RUN apt-get update && apt-get install -y --no-install-recommends \ |
af9f9a27Robert Craigie2 years ago | 5 | libxkbcommon0 \ |
| 6 | ca-certificates \ | |
| 7 | ca-certificates-java \ | |
| 8 | make \ | |
| 9 | curl \ | |
| 10 | git \ | |
b72a7235Stainless Bot1 years ago | 11 | openjdk-17-jdk-headless \ |
af9f9a27Robert Craigie2 years ago | 12 | unzip \ |
| 13 | libc++1 \ | |
| 14 | vim \ | |
| 15 | && apt-get clean autoclean | |
| 16 | | |
| 17 | # Ensure UTF-8 encoding | |
| 18 | ENV LANG=C.UTF-8 | |
| 19 | ENV LC_ALL=C.UTF-8 | |
| 20 | | |
| 21 | WORKDIR /workspace | |
| 22 | | |
| 23 | COPY . /workspace |