openai/openai-java

Public

mirrored from https://github.com/openai/openai-javaAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v0.35.0

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

.devcontainer/Dockerfile

23lines · modeblame

af9f9a27Robert Craigie2 years ago1# syntax=docker/dockerfile:1
2FROM debian:bookworm-slim
3
b72a7235Stainless Bot1 years ago4RUN apt-get update && apt-get install -y --no-install-recommends \
af9f9a27Robert Craigie2 years ago5libxkbcommon0 \
6ca-certificates \
7ca-certificates-java \
8make \
9curl \
10git \
b72a7235Stainless Bot1 years ago11openjdk-17-jdk-headless \
af9f9a27Robert Craigie2 years ago12unzip \
13libc++1 \
14vim \
15&& apt-get clean autoclean
16
17# Ensure UTF-8 encoding
18ENV LANG=C.UTF-8
19ENV LC_ALL=C.UTF-8
20
21WORKDIR /workspace
22
23COPY . /workspace