urdf-visualizer / Dockerfile
jurmy24's picture
fix: update docker
51aa2e1
raw
history blame
520 Bytes
FROM oven/bun:1 as build
# Set working directory
WORKDIR /app
# Copy the viewer directory with all its contents
COPY viewer/ .
# Install dependencies
RUN bun install --frozen-lockfile
# Build the application
RUN bun run build
# Production stage
FROM nginx:alpine
# Copy built assets from build stage
COPY --from=build /app/dist /usr/share/nginx/html
# Copy nginx configuration if needed
# COPY nginx.conf /etc/nginx/conf.d/default.conf
# Expose port
EXPOSE 80
# Start nginx
CMD ["nginx", "-g", "daemon off;"]