abelko
abelko
RRunPod
Created by abelko on 2/13/2024 in #⛅|pods
File copying does not occur in Custom Template
I have been successfully using runpod with a custom template until recently when it stopped working properly. Upon investigation, I discovered an issue where the project code was not being copied correctly into the pod. To identify the bug, I created a very simple image and attempted to copy test.txt as an experiment, but the file was not copied into the pod. On my personal GPU server, the test Dockerfile worked perfectly, and test.txt was copied successfully. I wonder why the code is not being copied only in runpod...? Below is my test Dockerfile code.
FROM ubuntu:22.04

WORKDIR /workspace

COPY ./test.txt .

CMD tail -f /dev/null
FROM ubuntu:22.04

WORKDIR /workspace

COPY ./test.txt .

CMD tail -f /dev/null
13 replies