chore: scaffold initial project with gitignore, demo app, docker setup, and requirements

This commit is contained in:
2025-10-09 23:17:47 +00:00
commit 0d2e5545fd
6 changed files with 371 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
FROM alpine:latest
# Install bash
RUN apk add --no-cache bash
# Create non-root user
RUN adduser -D -s /bin/bash myuser
# Switch to non-root user
USER myuser
# Set working directory
WORKDIR /home/myuser
# Default command
CMD ["/bin/bash"]