Control-GeoLDM-demo / Dockerfile
PIEthonista's picture
update
5980ed2
raw
history blame contribute delete
415 Bytes
# Use your prebuilt Docker image
# FROM yixian02/control-geoldm:cu113
FROM yixian02/control-geoldm:cu118
# Expose the port the app will run on
EXPOSE 7860
# Create the 'tmp' directory and give it proper permissions
RUN chmod -R 777 .
# Command to run your application
CMD ["/bin/bash", "-c", "source /opt/conda/etc/profile.d/conda.sh && conda activate geoldm && python -m deployment.main -u -a 0.0.0.0 -p 7860"]