Skip to content

Commit

Permalink
Merge branch 'master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
TaToTanWeb authored Sep 3, 2024
2 parents ba06439 + 751652f commit c71fd14
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
FROM python:3.10-slim
WORKDIR /dmibot/

# web app dependencies & build
RUN apt-get update && apt-get install -y curl
RUN curl -fsSL https://deb.nodesource.com/setup_20.x | bash - && apt-get install -y nodejs

COPY requirements.txt .
RUN pip3 install -r requirements.txt

COPY . .

RUN mkdir -p webapp/dist; cd webapp/; npm install; npx parcel build index.html; cd ..

ENTRYPOINT ["python3", "main.py"]
1 change: 1 addition & 0 deletions webapp/drive/static/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ body {
.drive-file.clicked {
opacity: 50%;
cursor: progress;

}

.hidden {
Expand Down

0 comments on commit c71fd14

Please sign in to comment.