- Created comprehensive deployment package with production builds - Added deployment scripts for Linux and Docker environments - Generated Dockerfiles for containerized deployment - Included nginx reverse proxy configuration - Added systemd service definitions for native Linux deployment - Created docker-compose.production.yml for orchestration - Comprehensive deployment documentation in README.md - Both LittleShop and TeleBot production builds included - Ready for deployment to Hostinger VPS server 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
31 lines
788 B
Docker
31 lines
788 B
Docker
# LittleShop Production Dockerfile
|
|
FROM mcr.microsoft.com/dotnet/aspnet:9.0 AS base
|
|
WORKDIR /app
|
|
EXPOSE 8080
|
|
|
|
# Create non-root user
|
|
RUN addgroup --system --gid 1001 littleshop \
|
|
&& adduser --system --uid 1001 --ingroup littleshop littleshop
|
|
|
|
# Create necessary directories
|
|
RUN mkdir -p /app/data /app/logs /app/wwwroot/uploads \
|
|
&& chown -R littleshop:littleshop /app
|
|
|
|
# Copy published application
|
|
COPY . .
|
|
|
|
# Set ownership
|
|
RUN chown -R littleshop:littleshop /app
|
|
|
|
# Switch to non-root user
|
|
USER littleshop
|
|
|
|
# Health check
|
|
HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --retries=3 \
|
|
CMD curl -f http://localhost:8080/health || exit 1
|
|
|
|
# Set environment variables
|
|
ENV ASPNETCORE_ENVIRONMENT=Production
|
|
ENV ASPNETCORE_URLS=http://+:8080
|
|
|
|
ENTRYPOINT ["./LittleShop"] |