Fix versioning

This commit is contained in:
TheMaddax 2025-03-25 18:02:09 -05:00
parent f7bb3b5bc9
commit 6ebdb0b886
3 changed files with 3 additions and 3 deletions

View file

@ -2,7 +2,7 @@
FROM node:14 AS build FROM node:14 AS build
WORKDIR /app WORKDIR /app
# Copy package.json and package-lock.json # Copy package.json and package-lock.json
COPY .env ./.env COPY .env ./.env
COPY package*.json ./ COPY package*.json ./

View file

@ -34,7 +34,7 @@ const minutesData: MinuteEntry[] = [
fileUrl: '/minutes/minutes-08062024.pdf', fileUrl: '/minutes/minutes-08062024.pdf',
}, },
]; ];
const Minutes: React.FC = () => { const Minutes: React.FC = () => {
const [sortColumn, setSortColumn] = useState<keyof MinuteEntry>('date'); const [sortColumn, setSortColumn] = useState<keyof MinuteEntry>('date');
const [sortDirection, setSortDirection] = useState<'asc' | 'desc'>('desc'); const [sortDirection, setSortDirection] = useState<'asc' | 'desc'>('desc');

View file

@ -9,7 +9,7 @@ services:
- "801:801" - "801:801"
environment: environment:
- NODE_ENV=production - NODE_ENV=production
- VERSION=1.8 - VERSION=1.9
env_file: env_file:
- .env - .env
networks: networks: