gemma-3-270m / Dockerfile
github-actions[bot]
Automatically deploy
d9203d2
raw
history blame contribute delete
392 Bytes
#
# SPDX-FileCopyrightText: Hadad <[email protected]>
# SPDX-License-Identifier: Apache-2.0
#
# Use a specific container image for the app
FROM hadadrjt/playground:public-latest
# Set the main working directory inside the container
WORKDIR /app
# Copy all files into the container
COPY . .
# Open the port so the app can be accessed
EXPOSE 7860
# Start the app
CMD ["python", "app.py"]