-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDockerfile
32 lines (24 loc) · 807 Bytes
/
Dockerfile
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
FROM python:3.12.4-slim
#https://hub.docker.com/_/python
LABEL org.opencontainers.image.source https://github.com/JAlcocerT/Streamlit-MultiChat
LABEL maintainer="Jesus Alcocer Tagua"
LABEL org.opencontainers.image.description="A MultiChat with Python Streamlit"
LABEL org.opencontainers.image.licenses=GPL-3.0
# Copy local code to the container image.
ENV APP_HOME /app
WORKDIR $APP_HOME
COPY . ./
# RUN apt-get update && apt-get install -y \
# build-essential \
# curl \
# software-properties-common \
# git \
# && rm -rf /var/lib/apt/lists/*
# Install production dependencies.
RUN pip install -r requirements.txt
# For Scrapegraph
RUN playwright install-deps \
&& playwright install
EXPOSE 8501
###podman build -t st_multichat_v1_1 .
#docker build -t st_multichat_v1_1a .