Files
copilotkit--copilotkit/examples/integrations/agentcore/docker/Dockerfile.frontend.dev
T
2026-07-13 12:58:18 +08:00

21 lines
386 B
Docker

# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
# SPDX-License-Identifier: Apache-2.0
FROM node:20-alpine
WORKDIR /app
# Copy package files
COPY package*.json ./
# Install dependencies
RUN npm install
# Copy source code
COPY . .
# Expose port
EXPOSE 3000
# Start development server (--host exposes to Docker network)
CMD ["npm", "run", "dev", "--", "--host"]