wallapi / Dockerfile
Ig0tU
Deploy WallAPI: Express server, Google Sheets API, and Socket.IO
9cd8722
FROM node:18-slim
# Create app directory
WORKDIR /app
# Install app dependencies
COPY package*.json ./
RUN npm install
# Bundle app source
COPY . .
# Hugging Face Spaces exposes port 7860
ENV PORT=7860
EXPOSE 7860
# Run the server
CMD [ "node", "server.js" ]