Reorganize project structure: move public files to public/ directory
This commit is contained in:
parent
8de043bfef
commit
38545721a0
253 changed files with 0 additions and 0 deletions
13
public/languages/javascript/openai/nodejs/Dockerfile
Normal file
13
public/languages/javascript/openai/nodejs/Dockerfile
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
# Use official Node.js image (checked 2025-10-15: node:23-alpine is latest stable)
|
||||
FROM node:23-alpine
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
# Copy package files and install dependencies
|
||||
COPY package.json ./
|
||||
RUN npm install
|
||||
|
||||
# Copy application code
|
||||
COPY uncloseai.js ./
|
||||
|
||||
CMD ["node", "uncloseai.js"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue