Skip to content

Commit 6e46e8d

Browse files
authored
Add initial Dockerfile and devcontainer configuration (#645)
In the past the devcontainer was not working out of the box in the process description. Now, the copied file from score repo into process_description and trying e.g. bazel run //:docs runs out of the box. It makes sense that others take a look, if it works for you as well. This is meant as a proposal as it could be worth to align to the standard S-CORE container. Links to #637 Original source: https://github.com/etas-contrib/score_process_description/tree/pahmann/devcontainer Signed-off-by: Philipp Ahmann <philipp.ahmann@de.bosch.com>
1 parent ef14a66 commit 6e46e8d

2 files changed

Lines changed: 21 additions & 0 deletions

File tree

.devcontainer/Dockerfile

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# *******************************************************************************
2+
# Copyright (c) 2026 Contributors to the Eclipse Foundation
3+
#
4+
# See the NOTICE file(s) distributed with this work for additional
5+
# information regarding copyright ownership.
6+
#
7+
# This program and the accompanying materials are made available under the
8+
# terms of the Apache License Version 2.0 which is available at
9+
# https://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
# SPDX-License-Identifier: Apache-2.0
12+
# *******************************************************************************
13+
14+
# Use Dockerfile to get dependabot version bumps after new image is released
15+
FROM ghcr.io/eclipse-score/devcontainer:v1.3.0

.devcontainer/devcontainer.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"name": "eclipse-s-core",
3+
"build": {
4+
"dockerfile": "Dockerfile"
5+
}
6+
}

0 commit comments

Comments
 (0)