Skip to content
Merged
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
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@
EOF

# Copy the local repository into the workspace
COPY --chown=vscode:dev . /workspace/tsffs/

Check warning on line 157 in Dockerfile

View workflow job for this annotation

GitHub Actions / Check Docker Image (tsffs-prod)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/

Check warning on line 157 in Dockerfile

View workflow job for this annotation

GitHub Actions / Check Docker Image (tsffs-dev)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/

WORKDIR /workspace/tsffs/

Expand Down Expand Up @@ -193,9 +193,9 @@
# Create the example project
ispm projects /workspace/projects/example/ --create \
1000-${PUBLIC_SIMICS_PACKAGE_VERSION_1000} \
2096-6.0.73 \
8112-6.0.21 \
1030-6.0.7 \
2096-latest \
8112-latest \
1030-latest \
31337-latest --ignore-existing-files --non-interactive
Comment on lines 195 to 199
Copy link

Copilot AI Feb 27, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Using -latest for these packages makes the Docker image build non-reproducible (the resolved versions can change over time) and can become incompatible with the pinned Simics Base 1000-${PUBLIC_SIMICS_PACKAGE_VERSION_1000} default (currently 6.0.185). Consider parameterizing these addon package versions (with default values) or pinning them to versions known to work with the selected base version, so docker build -t tsffs . remains stable.

Copilot uses AI. Check for mistakes.

# Copy required files
Expand Down
Loading