openai/openai-java

Public

mirrored fromhttps://github.com/openai/openai-javaAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
5bb433687a05058d3114e6e9e63b93395dc7a99d

Branches

Tags

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

Clone

HTTPS

Download ZIP

.devcontainer/Dockerfile

23lines · modecode

1# syntax=docker/dockerfile:1
2FROM debian:bookworm-slim
3
4RUN apt-get update && apt-get install -y --no-install-recommends \
5 libxkbcommon0 \
6 ca-certificates \
7 ca-certificates-java \
8 make \
9 curl \
10 git \
11 openjdk-17-jdk-headless \
12 unzip \
13 libc++1 \
14 vim \
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
24