tgritsaev's picture
Upload 198 files
affcd23 verified
raw
history blame contribute delete
387 Bytes
FROM pytorch/pytorch:1.11.0-cuda11.3-cudnn8-devel
WORKDIR /repos/asr_project_template
# Install requirements for torchaudio
RUN pip install sox && conda install torchaudio==0.11.0 -c pytorch && conda install -c conda-forge librosa
# Install requirements
COPY requirements.txt ./
RUN pip install -r requirements.txt
# Copy the contents of repository
COPY . .
# Expose port
EXPOSE 3000