File size: 314 Bytes
f52d137 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
# Development version - extends the main Dockerfile
FROM aredemo:latest
# Override environment variables for development
ENV FLASK_ENV=development
ENV NODE_ENV=development
ENV FLASK_DEBUG=1
# Expose additional ports if needed
EXPOSE 7860 3000
# Use development-specific command if needed
CMD ["bash", "run.sh"]
|