if there is a File Mount like we have Raw Editor option for env and JSON, can there be custom file content space where a config files like yml can be edited
it work for me in railway as I deploy using Dockerfile but if i want to create a template how should i do it and how should i allow other users to change the config as required
FROM golang:1.22.5-alpine
WORKDIR /app
COPY . .
RUN go mod download
RUN go build -o app .
RUN apk add --no-cache curl
RUN curl -o example.yml https://gist.githubusercontent.com/example/example/raw/example.yml
EXPOSE 8080
ENTRYPOINT ["./app"]
FROM golang:1.22.5-alpine
WORKDIR /app
COPY . .
RUN go mod download
RUN go build -o app .
RUN apk add --no-cache curl
RUN curl -o example.yml https://gist.githubusercontent.com/example/example/raw/example.yml