Skip to content

Commit c613b2d

Browse files
committed
Fix Dockerfile
1 parent dc80bb5 commit c613b2d

7 files changed

Lines changed: 5 additions & 13 deletions

File tree

.github/workflows/testing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
2626
- name: Installing MBROLA
2727
run: |
28-
sudo /bin/bash bin/install.sh
28+
sudo /bin/bash src/mbrola/install.sh
2929
3030
- name: Testing with Pytest
3131
run: |

Dockerfile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
FROM python:3.12
22
WORKDIR /project
33
ENV DEBIAN_FRONTEND=noninteractive
4-
COPY bin/install.sh /install.sh
4+
COPY src/mbrola/install.sh /install.sh
55
RUN apt-get update && apt-get install -y git build-essential gcc
66
RUN git config --global core.compression 0
7-
RUN /install.sh
8-
COPY mbrola/mbrola.py /project/
7+
RUN
8+
RUN chmod +x /install.sh && /install.sh
9+
COPY src/mbrola/mbrola.py /project/

mbrola/__about__.py

Lines changed: 0 additions & 9 deletions
This file was deleted.
File renamed without changes.
File renamed without changes.

src/mbrola/py.typed

Whitespace-only changes.

0 commit comments

Comments
 (0)