Scratch space for learning atproto app development

Remove dockerfile

Changed files
-22
-22
Dockerfile
···
-
FROM node:22.5-slim
-
-
# Create app directory
-
WORKDIR /usr/src/app
-
-
# Copy package.json and package-lock.json
-
COPY package*.json ./
-
-
# Install app dependencies
-
RUN npm ci
-
-
# Bundle app source
-
COPY . .
-
-
# Build the TypeScript files
-
RUN npm run build
-
-
# Expose port 8080
-
EXPOSE 8080
-
-
# Start the app
-
CMD npm run start