mirror of
https://github.com/anomalyco/opencode-sdk-go.git
synced 2026-04-28 04:29:49 +00:00
chore(internal): codegen related update
This commit is contained in:
parent
fef45833c2
commit
788c6add38
1 changed files with 23 additions and 0 deletions
23
.devcontainer/Dockerfile
Normal file
23
.devcontainer/Dockerfile
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
# syntax=docker/dockerfile:1
|
||||
FROM debian:bookworm-slim
|
||||
|
||||
RUN apt-get update && apt-get install -y \
|
||||
libxkbcommon0 \
|
||||
ca-certificates \
|
||||
git \
|
||||
golang \
|
||||
unzip \
|
||||
libc++1 \
|
||||
vim \
|
||||
&& apt-get clean autoclean
|
||||
|
||||
# Ensure UTF-8 encoding
|
||||
ENV LANG=C.UTF-8
|
||||
ENV LC_ALL=C.UTF-8
|
||||
|
||||
ENV GOPATH=/go
|
||||
ENV PATH=$GOPATH/bin:$PATH
|
||||
|
||||
WORKDIR /workspace
|
||||
|
||||
COPY . /workspace
|
||||
Loading…
Add table
Add a link
Reference in a new issue