File size: 1,954 Bytes
8ef4e13 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 |
FROM ghcr.io/anthropics/anthropic-quickstarts:computer-use-demo-latest
# Install nginx
USER root
RUN apt-get update && apt-get install -y nginx
# Set working directory
WORKDIR /home/computeruse
# Create nginx configuration with improved WebSocket support
RUN echo '\
server {\n\
listen 8080;\n\
server_name _;\n\
\n\
location / {\n\
proxy_pass http://127.0.0.1:6080;\n\
proxy_http_version 1.1;\n\
proxy_set_header Upgrade $http_upgrade;\n\
proxy_set_header Connection "upgrade";\n\
proxy_set_header Host $host;\n\
proxy_set_header X-Real-IP $remote_addr;\n\
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;\n\
proxy_set_header X-Forwarded-Proto $scheme;\n\
proxy_buffering off;\n\
}\n\
\n\
location /streamlit/ {\n\
proxy_pass http://127.0.0.1:8501/;\n\
proxy_http_version 1.1;\n\
proxy_set_header Upgrade $http_upgrade;\n\
proxy_set_header Connection "upgrade";\n\
proxy_set_header Host $host;\n\
proxy_set_header X-Real-IP $remote_addr;\n\
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;\n\
proxy_set_header X-Forwarded-Proto $scheme;\n\
proxy_buffering off;\n\
}\n\
\n\
location /noVNC/ {\n\
proxy_pass http://127.0.0.1:6080/;\n\
proxy_http_version 1.1;\n\
proxy_set_header Upgrade $http_upgrade;\n\
proxy_set_header Connection "upgrade";\n\
proxy_set_header Host $host;\n\
proxy_read_timeout 61s;\n\
proxy_buffering off;\n\
}\n\
}\n' > /etc/nginx/sites-available/default
# Expose only the main port
EXPOSE 8080
ENV PORT=8080
ENV STREAMLIT_SERVER_PORT=8501
ENV NOVNC_PORT=6080
ENV BASE_URL="/noVNC"
ENV STREAMLIT_BASE_URL="/streamlit"
# Create and set permissions for start script
COPY start.sh /start.sh
RUN chmod +x /start.sh
# Switch back to non-root user
USER 1000
CMD ["/start.sh"] |