Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: upgrade build image #414

Merged
merged 2 commits into from
Nov 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// README at: https://github.com/devcontainers/templates/tree/main/src/docker-existing-dockerfile
{
"name": "ten_agent_dev",
"image": "ghcr.io/ten-framework/ten_agent_build:0.2.2",
"image": "ghcr.io/ten-framework/ten_agent_build:0.2.3",
"customizations": {
"vscode": {
"extensions": [
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/ten-framework/ten_agent_build:0.2.2 AS builder
FROM ghcr.io/ten-framework/ten_agent_build:0.2.3 AS builder

ARG SESSION_CONTROL_CONF=session_control.conf

Expand All @@ -22,7 +22,7 @@ RUN apt-get clean && apt-get update && apt-get install -y --no-install-recommend
python3-venv \
python3-pip \
python3-dev \
jq \
jq vim \
ca-certificates \
&& apt-get clean && rm -rf /var/lib/apt/lists/* && rm -rf /tmp/*

Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
ten_agent_dev:
image: ghcr.io/ten-framework/ten_agent_build:0.2.2
image: ghcr.io/ten-framework/ten_agent_build:0.2.3
container_name: ten_agent_dev
platform: linux/amd64
tty: true
Expand Down