Update Dockerfile, README, and package.json for project renaming and dependency adjustments

This commit is contained in:
암냥 2025-12-11 01:25:23 +09:00
commit 0e56d0fc65
No known key found for this signature in database
4 changed files with 680 additions and 4 deletions

View file

@ -18,14 +18,14 @@ RUN bun run build
FROM alpine:latest as runtime
RUN apk add --no-cache tzdata
RUN apk add --no-cache tzdata libstdc++ libgcc
ENV TZ=Asia/Seoul
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
WORKDIR /app
COPY --from=build /app/yanmang .
COPY --from=build /app/memos-rss .
COPY --from=build /app/version .
CMD ["./yanmang"]
CMD ["./memos-rss"]