#Help needed to deploy Hugo app

5 messages · Page 1 of 1 (latest)

patent jackal
#

Does anyone have a resource on how to deploy Hugo on railway. It doesn’t detect it automatically and there are no resources online

remote pastureBOT
#

Project ID: d6086f89-0c70-4a8a-ba8a-8d28c7ba158d

patent jackal
#

d6086f89-0c70-4a8a-ba8a-8d28c7ba158d

ancient frigate
#

Inside the Dockerfile, use an official Hugo image or configure the environment with Hugo. For example:

FROM klakegg/hugo:latest AS hugo

WORKDIR /app

COPY . .

RUN hugo
patent jackal