Compare commits

..

No commits in common. "bb1621ba49a6eabc2499e0aae86b4ee0ff553b15" and "349378a13e44c05b2c9b86cdb270db04079a61c7" have entirely different histories.

2 changed files with 2 additions and 7 deletions

View file

@ -31,7 +31,7 @@ jobs:
TEA_VERSION=$(echo "${{ steps.tea_version.outputs.version }}")
wget "https://gitea.com/gitea/tea/releases/download/v${TEA_VERSION}/tea-${TEA_VERSION}-linux-amd64" -O tea
chmod +x tea
mv tea /usr/local/bin/tea
sudo mv tea /usr/local/bin/tea
- name: Verify Tea Installation
run: tea --version

View file

@ -1,12 +1,7 @@
FROM oven/bun:debian AS build
WORKDIR /app
RUN apt-get update -y && \
apt-get install -y --no-install-recommends curl ca-certificates gnupg && \
curl -fsSL https://deb.nodesource.com/setup_20.x | bash - && \
apt-get install -y --no-install-recommends nodejs && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
RUN apt-get update -y && apt-get install nodejs -y
ENV NODE_ENV=production