Skip to content

Commit

Permalink
Add debian-py312 base image
Browse files Browse the repository at this point in the history
  • Loading branch information
cjao committed Jan 16, 2025
1 parent 20f5011 commit 62ead10
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 4 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,9 @@ jobs:
fail-fast: false
matrix:
image:
- debian11-py39
- debian11-py310
- debian11-py311
- debian12-py39
- debian12-py310
- debian12-py311
- debian12-py312
steps:
- name: Check out master
uses: actions/checkout@v3
Expand Down
25 changes: 25 additions & 0 deletions debian12-py312/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Copyright 2025 Agnostiq Inc.
#
# This file is part of Covalent.
#
# Licensed under the Apache License 2.0 (the "License"). A copy of the
# License may be obtained with this software package or at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Use of this file is prohibited except in compliance with the License.
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

# syntax=docker/dockerfile:1
FROM python:3.12-bookworm

RUN apt-get update \
&& apt-get install -y --no-install-recommends curl gcc git rsync vim \
&& curl -sL https://deb.nodesource.com/setup_20.x | bash - \
&& apt-get install -y nodejs \
&& npm install --global yarn \
&& rm -rf /var/lib/apt/lists/*

0 comments on commit 62ead10

Please sign in to comment.