Skip to content

Commit fc148b9

Browse files
Add Dockerfile and dist directory to fix Anchore workflow
Co-authored-by: parkcheolhong <111139476+parkcheolhong@users.noreply.github.com>
1 parent dccf25c commit fc148b9

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed

Dockerfile

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Minimal Dockerfile for desktop-tutorial repository
2+
# This allows the Anchore security scanning workflow to run successfully
3+
4+
FROM alpine:latest
5+
6+
# Add a label for documentation
7+
LABEL maintainer="desktop-tutorial"
8+
LABEL description="Minimal Docker image for GitHub Desktop tutorial repository"
9+
10+
# Create a simple directory structure
11+
RUN mkdir -p /app
12+
13+
# Set working directory
14+
WORKDIR /app
15+
16+
# Add repository files
17+
COPY . .
18+
19+
# Default command
20+
CMD ["/bin/sh"]

dist/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Placeholder for build artifacts

0 commit comments

Comments
 (0)