Skip to content

Commit ce74d0e

Browse files
Address code review feedback: pin Alpine version and add .dockerignore
Co-authored-by: parkcheolhong <111139476+parkcheolhong@users.noreply.github.com>
1 parent fc148b9 commit ce74d0e

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

.dockerignore

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Exclude version control
2+
.git
3+
.gitignore
4+
5+
# Exclude GitHub workflows and configuration
6+
.github
7+
8+
# Exclude build artifacts and dependencies
9+
node_modules
10+
dist
11+
12+
# Exclude temporary files
13+
*.tmp
14+
*.log

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Minimal Dockerfile for desktop-tutorial repository
22
# This allows the Anchore security scanning workflow to run successfully
33

4-
FROM alpine:latest
4+
FROM alpine:3.19
55

66
# Add a label for documentation
77
LABEL maintainer="desktop-tutorial"

0 commit comments

Comments
 (0)