Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

final project final commit #959

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
#import python docker image
FROM python:3.9
#setup work directory
WORKDIR /app
#install needed dependencies
COPY requirements.txt .

RUN pip install jupyter -U && pip install jupyterlab

RUN apt-get update && apt-get install -y libglib2.0-0 libgl1-mesa-glx && rm -rf /var/lib/apt/lists/*

RUN pip install -r requirements.txt

RUN pip install mariadb

RUN pip install pydub

RUN pip install soundfile
#expose port 8888 on the container
EXPOSE 8888
#run default command
CMD ["jupyter", "lab","--ip=0.0.0.0","--allow-root"]
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
moviepy==1.0.3
numpy==1.24.4
opencv_python==4.9.0.80
pandas==2.0.3
rethinkdb==2.4.10.post1
scipy==1.13.0
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
FROM mariadb:10.6

LABEL maintainer="team@appwrite.io"

# Add appwrite schema and tables
ADD ./all.sql /docker-entrypoint-initdb.d/all.sql

RUN chown -R mysql:mysql /docker-entrypoint-initdb.d/
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
{
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Loading