Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
MPAI-Private
MPAI-CAE
arp
Tape Audio Restoration
Commits
732bb257
Commit
732bb257
authored
Apr 03, 2023
by
Matteo
Browse files
update Docker script and readme requirements
parent
c5a56e37
Changes
4
Hide whitespace changes
Inline
Side-by-side
.dockerignore
0 → 100644
View file @
732bb257
venv
__pycache__
config.yaml
\ No newline at end of file
.gitignore
View file @
732bb257
.idea
.idea
.DS_Store
.DS_Store
venv
__pycache__
\ No newline at end of file
Dockerfile
View file @
732bb257
FROM
python:3.
9
-slim
FROM
python:3.
10
-slim
LABEL
maintainer="Matteo Spanio"
LABEL
maintainer="Matteo Spanio"
WORKDIR
/app
WORKDIR
/app
COPY
tapeAudioRestoration.py requirements.txt config.yaml
./
COPY
.
./
RUN
pip
install
-r
requirements.txt
RUN
pip
install
--no-cache-dir
-r
requirements.txt
VOLUME
[ "/data" ]
VOLUME
[ "/data" ]
CMD
[
"python3", "tapeAudioRestoration.py", "-h"
]
CMD
[
"uvicorn", "server:app", "--host", "0.0.0.0", "--port", "80", "--log-config", "log_config.yaml"
]
README.md
View file @
732bb257
...
@@ -6,7 +6,7 @@ Implements the Technical Specification of [MPAI CAE-ARP](https://mpai.community/
...
@@ -6,7 +6,7 @@ Implements the Technical Specification of [MPAI CAE-ARP](https://mpai.community/
*
Editing List.
*
Editing List.
## Getting started
## Getting started
The
*Tape Audio Restoration*
is written in Python 3.
9
which is therefore required to run the program.
The
*Tape Audio Restoration*
is written in Python 3.
10
which is therefore required to run the program.
## Installation
## Installation
[
PyYaml
](
https://pyyaml.org
)
is required for reading the configuration file. You can install it with:
[
PyYaml
](
https://pyyaml.org
)
is required for reading the configuration file. You can install it with:
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment