openai/openai-java

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
24d08bb4e10bce76c9b9cc2dd69a2acf89ee1335

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 \
5 libxkbcommon0 \
6 ca-certificates \
7 ca-certificates-java \
8 make \
9 curl \
10 git \
11 openjdk-17-jdk \
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