a
All checks were successful
Build and Deploy docker container / build (push) Successful in 1m53s
Build and Deploy docker container / deploy (push) Successful in 4s

This commit is contained in:
Jonathan Branan 2024-11-02 22:27:02 -05:00
parent c1430ebc30
commit b89accc396
2 changed files with 1 additions and 2 deletions

View File

@ -4,7 +4,6 @@ ENV NEXT_TELEMETRY_DISABLED=1
RUN apk add --no-cache libc6-compat
WORKDIR /app
COPY ./out /app/out
RUN npm install serve
ENV NODE_ENV=production
ENV PORT=3000

View File

@ -1,3 +1,3 @@
export default function Page() {
return <div>hello world</div>
return <div>this is a test of the emergency alert system</div>
}