chore: scaffold initial project with gitignore, demo app, docker setup, and requirements
This commit is contained in:
@@ -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"]
|
||||
Reference in New Issue
Block a user